mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
It is not used by bluetooth and nfc services. Bug: 33241851 Bug: 37305530 Test: built and tested on sailfish Change-Id: I599073296baa5eee72a1fce8caa4eb8352f66218 Merged-In: I599073296baa5eee72a1fce8caa4eb8352f66218
26 lines
476 B
Makefile
26 lines
476 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
LOCAL_MODULE := android.hardware.nfc@1.0-service
|
|
LOCAL_INIT_RC := android.hardware.nfc@1.0-service.rc
|
|
LOCAL_SRC_FILES := \
|
|
service.cpp \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
liblog \
|
|
libcutils \
|
|
libdl \
|
|
libbase \
|
|
libutils \
|
|
libhardware \
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
android.hardware.nfc@1.0 \
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|