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 := \ |
| 10 | libhidl \ |
| 11 | libhwbinder \ |
| 12 | libutils \ |
| 13 | liblog \ |
| 14 | libcutils \ |
| 15 | libhardware \ |
| 16 | libbase \ |
| 17 | libcutils \ |
| 18 | android.hardware.light@2.0 \ |
| 19 | |
| 20 | include $(BUILD_SHARED_LIBRARY) |
Steven Moreland | 41db6ab | 2016-10-03 09:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | include $(CLEAR_VARS) |
| 23 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 24 | LOCAL_MODULE := android.hardware.light@2.0-service |
| 25 | LOCAL_INIT_RC := android.hardware.light@2.0-service.rc |
| 26 | LOCAL_SRC_FILES := \ |
| 27 | service.cpp \ |
| 28 | |
| 29 | LOCAL_SHARED_LIBRARIES := \ |
| 30 | liblog \ |
| 31 | libcutils \ |
| 32 | libdl \ |
| 33 | libbase \ |
| 34 | libutils \ |
| 35 | libhardware_legacy \ |
| 36 | libhardware \ |
| 37 | |
| 38 | LOCAL_SHARED_LIBRARIES += \ |
| 39 | libhwbinder \ |
| 40 | libhidl \ |
| 41 | android.hardware.light@2.0 \ |
| 42 | |
| 43 | include $(BUILD_EXECUTABLE) |