8a0cb4ee0b
Bug: 8580410 Change-Id: I2ca4fa00dde0b574df3619134836bcb9315bd506
34 lines
573 B
Makefile
34 lines
573 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_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libhardware \
|
|
libutils \
|
|
liblog \
|
|
libbinder \
|
|
libui \
|
|
libgui
|
|
|
|
|
|
|
|
LOCAL_MODULE:= libsensorservice
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|