1LOCAL_PATH:= $(call my-dir) 2 3include $(CLEAR_VARS) 4LOCAL_MODULE_RELATIVE_PATH := hw 5LOCAL_PROPRIETARY_MODULE := true 6LOCAL_MODULE := android.hardware.nfc@1.0-service 7LOCAL_INIT_RC := android.hardware.nfc@1.0-service.rc 8LOCAL_SRC_FILES := \ 9 service.cpp \ 10 11LOCAL_SHARED_LIBRARIES := \ 12 liblog \ 13 libcutils \ 14 libdl \ 15 libbase \ 16 libutils \ 17 libhardware \ 18 19LOCAL_SHARED_LIBRARIES += \ 20 libhidlbase \ 21 libhidltransport \ 22 android.hardware.nfc@1.0 \ 23 24 25include $(BUILD_EXECUTABLE) 26