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