b6df7d0e4c
we only export the main entry-point. this saves about 150KB. Change-Id: I55eb2b6705386fdfa43860deb62f9cdd2a0982aa
34 lines
627 B
Makefile
34 lines
627 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)
|