| LOCAL_PATH:= $(call my-dir) |
| include $(CLEAR_VARS) |
| |
| LOCAL_SRC_FILES:= \ |
| BatteryService.cpp \ |
| CorrectedGyroSensor.cpp \ |
| Fusion.cpp \ |
| GravitySensor.cpp \ |
| LinearAccelerationSensor.cpp \ |
| OrientationSensor.cpp \ |
| RecentEventLogger.cpp \ |
| RotationVectorSensor.cpp \ |
| SensorDevice.cpp \ |
| SensorDirectConnection.cpp \ |
| SensorEventConnection.cpp \ |
| SensorFusion.cpp \ |
| SensorInterface.cpp \ |
| SensorList.cpp \ |
| SensorRecord.cpp \ |
| SensorService.cpp \ |
| SensorServiceUtils.cpp \ |
| |
| LOCAL_CFLAGS:= -DLOG_TAG=\"SensorService\" |
| |
| LOCAL_CFLAGS += -Wall -Werror -Wextra |
| |
| LOCAL_CFLAGS += -fvisibility=hidden |
| |
| LOCAL_SHARED_LIBRARIES := \ |
| libcutils \ |
| libhardware \ |
| libhardware_legacy \ |
| libutils \ |
| liblog \ |
| libbinder \ |
| libsensor \ |
| libcrypto \ |
| libbase \ |
| libhidlbase \ |
| libhidltransport \ |
| libhwbinder \ |
| android.hardware.sensors@1.0 |
| |
| LOCAL_STATIC_LIBRARIES := \ |
| android.hardware.sensors@1.0-convert |
| |
| # our public headers depend on libsensor |
| LOCAL_EXPORT_SHARED_LIBRARY_HEADERS := \ |
| libsensor \ |
| |
| LOCAL_MODULE:= libsensorservice |
| |
| include $(BUILD_SHARED_LIBRARY) |
| |
| ##################################################################### |
| # build executable |
| include $(CLEAR_VARS) |
| |
| LOCAL_SRC_FILES:= \ |
| main_sensorservice.cpp |
| |
| LOCAL_SHARED_LIBRARIES := \ |
| libsensorservice \ |
| libbinder \ |
| libutils |
| |
| LOCAL_CFLAGS := -Wall -Werror -Wextra |
| |
| LOCAL_MODULE_TAGS := optional |
| |
| LOCAL_MODULE:= sensorservice |
| |
| include $(BUILD_EXECUTABLE) |