29 lines
495 B
Makefile
29 lines
495 B
Makefile
|
LOCAL_PATH:= $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_SRC_FILES:= \
|
||
|
SensorService.cpp
|
||
|
|
||
|
LOCAL_CFLAGS:= -DLOG_TAG=\"SensorService\"
|
||
|
|
||
|
# need "-lrt" on Linux simulator to pick up clock_gettime
|
||
|
ifeq ($(TARGET_SIMULATOR),true)
|
||
|
ifeq ($(HOST_OS),linux)
|
||
|
LOCAL_LDLIBS += -lrt -lpthread
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := \
|
||
|
libcutils \
|
||
|
libhardware \
|
||
|
libutils \
|
||
|
libbinder \
|
||
|
libui \
|
||
|
libgui
|
||
|
|
||
|
LOCAL_PRELINK_MODULE := false
|
||
|
|
||
|
LOCAL_MODULE:= libsensorservice
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|