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