1aa59a83b5
This depends on frameworks/... :-( Technically it doesn't belong in system/core at all, but of course there are things in system/core that depend on it, so for now we'll hack around this. Change-Id: I6aa437f18e1c09bd10fbd3333cf6998a0b6140c6
37 lines
838 B
Makefile
37 lines
838 B
Makefile
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
BUILD_LIBSYSUTILS := false
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
BUILD_LIBSYSUTILS := true
|
|
endif
|
|
|
|
ifeq ($(BUILD_LIBSYSUTILS),true)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
src/SocketListener.cpp \
|
|
src/FrameworkListener.cpp \
|
|
src/NetlinkListener.cpp \
|
|
src/NetlinkEvent.cpp \
|
|
src/FrameworkCommand.cpp \
|
|
src/SocketClient.cpp \
|
|
src/ServiceManager.cpp \
|
|
|
|
LOCAL_MODULE:= libsysutils
|
|
|
|
LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
LOCAL_SHARED_LIBRARIES := libcutils
|
|
|
|
ifeq ($(TARGET_SIMULATOR),true)
|
|
LOCAL_LDLIBS += -lpthread
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
endif
|
|
endif
|