Jan Altensen | 1813ff9 | 2019-08-20 23:20:25 +0200 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2019 The LineageOS Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | LOCAL_PATH := $(call my-dir) |
| 18 | |
| 19 | include $(CLEAR_VARS) |
| 20 | |
| 21 | LOCAL_SRC_FILES := \ |
| 22 | BiometricsFingerprint.cpp \ |
| 23 | service.cpp |
| 24 | |
| 25 | LOCAL_SHARED_LIBRARIES := \ |
| 26 | libbase \ |
| 27 | libhardware \ |
| 28 | libhidlbase \ |
| 29 | libhidltransport \ |
| 30 | liblog \ |
| 31 | libutils \ |
| 32 | android.hardware.biometrics.fingerprint@2.1 |
| 33 | |
Jan Altensen | 41de6a3 | 2019-08-21 23:34:48 +0200 | [diff] [blame] | 34 | ifeq ($(TARGET_SEC_FP_CALL_NOTIFY_ON_CANCEL),true) |
| 35 | LOCAL_CFLAGS += -DCALL_NOTIFY_ON_CANCEL |
| 36 | endif |
| 37 | |
Jan Altensen | 1813ff9 | 2019-08-20 23:20:25 +0200 | [diff] [blame] | 38 | ifeq ($(TARGET_SEC_FP_USES_PERCENTAGE_SAMPLES),true) |
| 39 | LOCAL_CFLAGS += -DUSES_PERCENTAGE_SAMPLES |
| 40 | endif |
| 41 | |
Danny Wood | e893e32 | 2020-02-22 06:36:04 +0000 | [diff] [blame] | 42 | ifeq ($(TARGET_SEC_FP_CALL_CANCEL_ON_ENROLL_COMPLETION),true) |
| 43 | LOCAL_CFLAGS += -DCALL_CANCEL_ON_ENROLL_COMPLETION |
| 44 | endif |
| 45 | |
Jan Altensen | 1813ff9 | 2019-08-20 23:20:25 +0200 | [diff] [blame] | 46 | LOCAL_MODULE := android.hardware.biometrics.fingerprint@2.1-service.samsung |
| 47 | LOCAL_INIT_RC := android.hardware.biometrics.fingerprint@2.1-service.samsung.rc |
| 48 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 49 | LOCAL_MODULE_TAGS := optional |
| 50 | LOCAL_MODULE_OWNER := samsung |
| 51 | LOCAL_VENDOR_MODULE := true |
| 52 | |
| 53 | include $(BUILD_EXECUTABLE) |
Willi Ye | f6a8f6e | 2019-11-13 01:38:23 +0100 | [diff] [blame^] | 54 | |
| 55 | include $(call all-makefiles-under,$(LOCAL_PATH)) |