blob: e0cfaa663e345050c548e29dac235a6cca936c40 [file] [log] [blame]
Mathias Agopianfc328812010-07-14 23:41:37 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
Mathias Agopian787ac1b2012-09-18 18:49:18 -07005 BatteryService.cpp \
Mathias Agopian984826c2011-05-17 22:54:42 -07006 CorrectedGyroSensor.cpp \
7 Fusion.cpp \
8 GravitySensor.cpp \
9 LinearAccelerationSensor.cpp \
10 OrientationSensor.cpp \
11 RotationVectorSensor.cpp \
Mathias Agopianf001c922010-11-11 17:58:51 -080012 SensorDevice.cpp \
Mathias Agopian984826c2011-05-17 22:54:42 -070013 SensorFusion.cpp \
14 SensorInterface.cpp \
15 SensorService.cpp \
16
Mathias Agopianfc328812010-07-14 23:41:37 -070017
18LOCAL_CFLAGS:= -DLOG_TAG=\"SensorService\"
19
Mathias Agopianfc328812010-07-14 23:41:37 -070020LOCAL_SHARED_LIBRARIES := \
21 libcutils \
22 libhardware \
23 libutils \
24 libbinder \
25 libui \
26 libgui
27
Iliyan Malchevb1c14902011-03-14 14:02:13 -070028
Mathias Agopianfc328812010-07-14 23:41:37 -070029
30LOCAL_MODULE:= libsensorservice
31
32include $(BUILD_SHARED_LIBRARY)