Iliyan Malchev | 678fa1f | 2016-09-22 15:53:53 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.nfc@1.0-impl |
| 5 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 6 | LOCAL_SRC_FILES := Nfc.cpp |
| 7 | LOCAL_SHARED_LIBRARIES := liblog libcutils libhardware libhwbinder libbase libcutils libutils libhidl android.hardware.nfc@1.0 |
| 8 | include $(BUILD_SHARED_LIBRARY) |
Iliyan Malchev | 3db0f60 | 2016-09-26 09:57:20 -0700 | [diff] [blame] | 9 | |
| 10 | include $(CLEAR_VARS) |
| 11 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 12 | LOCAL_MODULE := android.hardware.nfc@1.0-service |
| 13 | LOCAL_INIT_RC := android.hardware.nfc@1.0-service.rc |
| 14 | LOCAL_SRC_FILES := \ |
| 15 | service.cpp \ |
| 16 | |
| 17 | LOCAL_SHARED_LIBRARIES := \ |
| 18 | liblog \ |
| 19 | libcutils \ |
| 20 | libdl \ |
| 21 | libbase \ |
| 22 | libutils \ |
| 23 | libhardware_legacy \ |
| 24 | libhardware \ |
| 25 | |
| 26 | LOCAL_SHARED_LIBRARIES += \ |
| 27 | libhwbinder \ |
| 28 | libhidl \ |
| 29 | android.hardware.nfc@1.0 \ |
| 30 | |
| 31 | include $(BUILD_EXECUTABLE) |