Connor O'Brien | 74f8292 | 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 \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 11 | libhidlbase \ |
| 12 | libhidltransport \ |
Connor O'Brien | 74f8292 | 2016-10-10 12:31:37 -0700 | [diff] [blame] | 13 | libhwbinder \ |
| 14 | libhardware \ |
| 15 | libutils \ |
| 16 | android.hardware.boot@1.0 \ |
| 17 | |
| 18 | include $(BUILD_SHARED_LIBRARY) |
Connor O'Brien | b597c87 | 2016-10-10 14:41:35 -0700 | [diff] [blame] | 19 | |
| 20 | include $(CLEAR_VARS) |
| 21 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 22 | LOCAL_MODULE := android.hardware.boot@1.0-service |
| 23 | LOCAL_INIT_RC := android.hardware.boot@1.0-service.rc |
| 24 | LOCAL_SRC_FILES := \ |
| 25 | service.cpp |
| 26 | |
| 27 | LOCAL_SHARED_LIBRARIES := \ |
| 28 | liblog \ |
| 29 | libhwbinder \ |
| 30 | libhardware \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 31 | libhidlbase \ |
| 32 | libhidltransport \ |
Connor O'Brien | b597c87 | 2016-10-10 14:41:35 -0700 | [diff] [blame] | 33 | libutils \ |
| 34 | android.hardware.boot@1.0 \ |
| 35 | |
| 36 | include $(BUILD_EXECUTABLE) |