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 |
Steven Moreland | 46c0b94 | 2017-01-12 13:33:16 -0800 | [diff] [blame^] | 6 | LOCAL_PROPRIETARY_MODULE := true |
Connor O'Brien | fe25fd8 | 2016-10-10 12:31:37 -0700 | [diff] [blame] | 7 | LOCAL_SRC_FILES := \ |
| 8 | BootControl.cpp \ |
| 9 | |
| 10 | LOCAL_SHARED_LIBRARIES := \ |
| 11 | liblog \ |
Yifan Hong | 63544ea | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 12 | libhidlbase \ |
| 13 | libhidltransport \ |
Connor O'Brien | fe25fd8 | 2016-10-10 12:31:37 -0700 | [diff] [blame] | 14 | libhwbinder \ |
| 15 | libhardware \ |
| 16 | libutils \ |
| 17 | android.hardware.boot@1.0 \ |
| 18 | |
| 19 | include $(BUILD_SHARED_LIBRARY) |
Connor O'Brien | cd0d29d | 2016-10-10 14:41:35 -0700 | [diff] [blame] | 20 | |
| 21 | include $(CLEAR_VARS) |
| 22 | LOCAL_MODULE_RELATIVE_PATH := hw |
Steven Moreland | 46c0b94 | 2017-01-12 13:33:16 -0800 | [diff] [blame^] | 23 | LOCAL_PROPRIETARY_MODULE := true |
Connor O'Brien | cd0d29d | 2016-10-10 14:41:35 -0700 | [diff] [blame] | 24 | LOCAL_MODULE := android.hardware.boot@1.0-service |
| 25 | LOCAL_INIT_RC := android.hardware.boot@1.0-service.rc |
| 26 | LOCAL_SRC_FILES := \ |
| 27 | service.cpp |
| 28 | |
| 29 | LOCAL_SHARED_LIBRARIES := \ |
| 30 | liblog \ |
| 31 | libhwbinder \ |
| 32 | libhardware \ |
Yifan Hong | 63544ea | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 33 | libhidlbase \ |
| 34 | libhidltransport \ |
Connor O'Brien | cd0d29d | 2016-10-10 14:41:35 -0700 | [diff] [blame] | 35 | libutils \ |
| 36 | android.hardware.boot@1.0 \ |
| 37 | |
| 38 | include $(BUILD_EXECUTABLE) |