Alexey Polyudov | 586a32f | 2016-08-29 12:08:44 -0700 | [diff] [blame^] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 6 | LOCAL_MODULE := android.hardware.gatekeeper@1.0-impl |
| 7 | |
| 8 | LOCAL_SRC_FILES := \ |
| 9 | Gatekeeper.cpp \ |
| 10 | |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
| 12 | android.hardware.gatekeeper@1.0 \ |
| 13 | libhardware \ |
| 14 | libhidlbase \ |
| 15 | libhidltransport \ |
| 16 | libhwbinder \ |
| 17 | libutils \ |
| 18 | liblog \ |
| 19 | |
| 20 | include $(BUILD_SHARED_LIBRARY) |
| 21 | |
| 22 | include $(CLEAR_VARS) |
| 23 | |
| 24 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 25 | LOCAL_MODULE := android.hardware.gatekeeper@1.0-service |
| 26 | LOCAL_INIT_RC := android.hardware.gatekeeper@1.0-service.rc |
| 27 | |
| 28 | LOCAL_SRC_FILES := \ |
| 29 | service.cpp \ |
| 30 | |
| 31 | LOCAL_SHARED_LIBRARIES := \ |
| 32 | android.hardware.gatekeeper@1.0 \ |
| 33 | libhardware \ |
| 34 | libhidlbase \ |
| 35 | libhidltransport \ |
| 36 | libhwbinder \ |
| 37 | libutils \ |
| 38 | liblog \ |
| 39 | |
| 40 | include $(BUILD_EXECUTABLE) |