Andreas Huber | db49a41 | 2016-10-10 13:23:59 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 5 | LOCAL_MODULE := android.hardware.sensors@1.0-service |
| 6 | LOCAL_INIT_RC := android.hardware.sensors@1.0-service.rc |
| 7 | LOCAL_SRC_FILES := \ |
| 8 | service.cpp \ |
| 9 | |
| 10 | LOCAL_SHARED_LIBRARIES := \ |
| 11 | liblog \ |
| 12 | libcutils \ |
| 13 | libdl \ |
| 14 | libbase \ |
| 15 | libutils \ |
| 16 | libhardware_legacy \ |
| 17 | libhardware \ |
| 18 | |
| 19 | LOCAL_SHARED_LIBRARIES += \ |
| 20 | libhwbinder \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 21 | libhidlbase \ |
| 22 | libhidltransport \ |
Andreas Huber | db49a41 | 2016-10-10 13:23:59 -0700 | [diff] [blame] | 23 | android.hardware.sensors@1.0 \ |
| 24 | |
| 25 | include $(BUILD_EXECUTABLE) |