Connor O'Brien | fe25fd8 | 2016-10-10 12:31:37 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.boot@1.0-impl |
| 5 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 6 | LOCAL_SRC_FILES := \ |
| 7 | BootControl.cpp \ |
| 8 | |
| 9 | LOCAL_SHARED_LIBRARIES := \ |
| 10 | liblog \ |
| 11 | libhidl \ |
| 12 | libhwbinder \ |
| 13 | libhardware \ |
| 14 | libutils \ |
| 15 | android.hardware.boot@1.0 \ |
| 16 | |
| 17 | include $(BUILD_SHARED_LIBRARY) |
Connor O'Brien | cd0d29d | 2016-10-10 14:41:35 -0700 | [diff] [blame^] | 18 | |
| 19 | include $(CLEAR_VARS) |
| 20 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 21 | LOCAL_MODULE := android.hardware.boot@1.0-service |
| 22 | LOCAL_INIT_RC := android.hardware.boot@1.0-service.rc |
| 23 | LOCAL_SRC_FILES := \ |
| 24 | service.cpp |
| 25 | |
| 26 | LOCAL_SHARED_LIBRARIES := \ |
| 27 | liblog \ |
| 28 | libhwbinder \ |
| 29 | libhardware \ |
| 30 | libhidl \ |
| 31 | libutils \ |
| 32 | android.hardware.boot@1.0 \ |
| 33 | |
| 34 | include $(BUILD_EXECUTABLE) |