Janis Danisevskis | 0f35e5a | 2016-10-12 11:33:13 +0100 | [diff] [blame^] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.keymaster@3.0-impl |
| 5 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 6 | LOCAL_SRC_FILES := \ |
| 7 | KeymasterDevice.cpp \ |
| 8 | |
| 9 | LOCAL_SHARED_LIBRARIES := \ |
| 10 | liblog \ |
| 11 | libsoftkeymasterdevice \ |
| 12 | libcrypto \ |
| 13 | libkeymaster1 \ |
| 14 | libhidlbase \ |
| 15 | libhidltransport \ |
| 16 | libhwbinder \ |
| 17 | libutils \ |
| 18 | libhardware \ |
| 19 | android.hardware.keymaster@3.0 |
| 20 | |
| 21 | include $(BUILD_SHARED_LIBRARY) |
| 22 | |
| 23 | include $(CLEAR_VARS) |
| 24 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 25 | LOCAL_MODULE := android.hardware.keymaster@3.0-service |
| 26 | LOCAL_INIT_RC := android.hardware.keymaster@3.0-service.rc |
| 27 | LOCAL_SRC_FILES := \ |
| 28 | service.cpp |
| 29 | |
| 30 | LOCAL_SHARED_LIBRARIES := \ |
| 31 | liblog \ |
| 32 | libcutils \ |
| 33 | libdl \ |
| 34 | libbase \ |
| 35 | libutils \ |
| 36 | libhardware_legacy \ |
| 37 | libhardware \ |
| 38 | libhwbinder \ |
| 39 | libhidlbase \ |
| 40 | libhidltransport \ |
| 41 | android.hardware.keymaster@3.0 |
| 42 | |
| 43 | include $(BUILD_EXECUTABLE) |