OSDN Git Service

merge in jb-mr2-zeroday-release history after reset to jb-mr2-dev
[android-x86/frameworks-native.git] / services / sensorservice / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2 include $(CLEAR_VARS)
3
4 LOCAL_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
18 LOCAL_CFLAGS:= -DLOG_TAG=\"SensorService\"
19
20 LOCAL_SHARED_LIBRARIES := \
21         libcutils \
22         libhardware \
23         libhardware_legacy \
24         libutils \
25         liblog \
26         libbinder \
27         libui \
28         libgui
29
30
31
32 LOCAL_MODULE:= libsensorservice
33
34 include $(BUILD_SHARED_LIBRARY)