blob: d4e46f855506be2f925a3d16aa30c939d5149b8e [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 \
21 libhidl \
22 android.hardware.nfc@1.0 \
23
24include $(BUILD_EXECUTABLE)