Steven Moreland | 81f5da9 | 2016-09-30 16:32:24 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.light@2.0-impl |
| 5 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 6 | LOCAL_SRC_FILES := \ |
| 7 | Light.cpp \ |
| 8 | |
| 9 | LOCAL_SHARED_LIBRARIES := \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 10 | libhidlbase \ |
| 11 | libhidltransport \ |
Steven Moreland | 81f5da9 | 2016-09-30 16:32:24 -0700 | [diff] [blame] | 12 | libhwbinder \ |
| 13 | libutils \ |
| 14 | liblog \ |
| 15 | libcutils \ |
| 16 | libhardware \ |
| 17 | libbase \ |
| 18 | libcutils \ |
| 19 | android.hardware.light@2.0 \ |
| 20 | |
| 21 | include $(BUILD_SHARED_LIBRARY) |
Steven Moreland | 41db6ab | 2016-10-03 09:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | include $(CLEAR_VARS) |
| 24 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 25 | LOCAL_MODULE := android.hardware.light@2.0-service |
| 26 | LOCAL_INIT_RC := android.hardware.light@2.0-service.rc |
| 27 | LOCAL_SRC_FILES := \ |
| 28 | service.cpp \ |
| 29 | |
| 30 | LOCAL_SHARED_LIBRARIES := \ |
| 31 | liblog \ |
| 32 | libcutils \ |
| 33 | libdl \ |
| 34 | libbase \ |
| 35 | libutils \ |
| 36 | libhardware_legacy \ |
| 37 | libhardware \ |
| 38 | |
| 39 | LOCAL_SHARED_LIBRARIES += \ |
| 40 | libhwbinder \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 41 | libhidlbase \ |
| 42 | libhidltransport \ |
Steven Moreland | 41db6ab | 2016-10-03 09:20:36 -0700 | [diff] [blame] | 43 | android.hardware.light@2.0 \ |
| 44 | |
| 45 | include $(BUILD_EXECUTABLE) |