7ffaa7c60d
Change-Id: Ic65434a26c7fed1699abf0851fec6faa40e09c0c
52 lines
946 B
Makefile
52 lines
946 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
BatteryService.cpp \
|
|
CorrectedGyroSensor.cpp \
|
|
Fusion.cpp \
|
|
GravitySensor.cpp \
|
|
LinearAccelerationSensor.cpp \
|
|
OrientationSensor.cpp \
|
|
RotationVectorSensor.cpp \
|
|
SensorDevice.cpp \
|
|
SensorFusion.cpp \
|
|
SensorInterface.cpp \
|
|
SensorService.cpp
|
|
|
|
LOCAL_CFLAGS:= -DLOG_TAG=\"SensorService\"
|
|
|
|
LOCAL_CFLAGS += -fvisibility=hidden
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libutils \
|
|
liblog \
|
|
libbinder \
|
|
libui \
|
|
libgui
|
|
|
|
LOCAL_MODULE:= libsensorservice
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
#####################################################################
|
|
# build executable
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
main_sensorservice.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libsensorservice \
|
|
libbinder \
|
|
libutils
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE:= sensorservice
|
|
|
|
include $(BUILD_EXECUTABLE)
|