blob: a6c7d5ca5f9fe5320b57946dc900db26f19ef99e [file] [log] [blame]
Iliyan Malchev678fa1f2016-09-22 15:53:53 -07001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
Iliyan Malchev3db0f602016-09-26 09:57:20 -07004LOCAL_MODULE_RELATIVE_PATH := hw
5LOCAL_MODULE := android.hardware.nfc@1.0-service
6LOCAL_INIT_RC := android.hardware.nfc@1.0-service.rc
7LOCAL_SRC_FILES := \
8 service.cpp \
9
10LOCAL_SHARED_LIBRARIES := \
11 liblog \
12 libcutils \
13 libdl \
14 libbase \
15 libutils \
16 libhardware_legacy \
17 libhardware \
18
19LOCAL_SHARED_LIBRARIES += \
20 libhwbinder \
Yifan Hong63544ea2016-11-16 14:17:58 -080021 libhidlbase \
22 libhidltransport \
Iliyan Malchev3db0f602016-09-26 09:57:20 -070023 android.hardware.nfc@1.0 \
24
25include $(BUILD_EXECUTABLE)