Android.mk revision 787ac1b388f144f5e6dd38f8b807866a5256dafc
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5	BatteryService.cpp \
6	CorrectedGyroSensor.cpp \
7    Fusion.cpp \
8    GravitySensor.cpp \
9    LinearAccelerationSensor.cpp \
10    OrientationSensor.cpp \
11    RotationVectorSensor.cpp \
12    SensorDevice.cpp \
13    SensorFusion.cpp \
14    SensorInterface.cpp \
15    SensorService.cpp \
16
17
18LOCAL_CFLAGS:= -DLOG_TAG=\"SensorService\"
19
20LOCAL_SHARED_LIBRARIES := \
21	libcutils \
22	libhardware \
23	libutils \
24	libbinder \
25	libui \
26	libgui
27
28
29
30LOCAL_MODULE:= libsensorservice
31
32include $(BUILD_SHARED_LIBRARY)
33