852db07d69
this commit also imports all of sensorservice history. Change-Id: Iadffcc92be600c48175b8afadcb15b6648532b3f
20 lines
324 B
Makefile
20 lines
324 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
main_sensorservice.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libsensorservice \
|
|
libbinder \
|
|
libutils
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(LOCAL_PATH)/../../services/sensorservice
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE:= sensorservice
|
|
|
|
include $(BUILD_EXECUTABLE)
|