blob: dfe81d19631e477267dc39e767bfc7ef3bbfcc1e [file] [log] [blame]
Jan Altensen1813ff92019-08-20 23:20:25 +02001#
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
17LOCAL_PATH := $(call my-dir)
18
19include $(CLEAR_VARS)
20
21LOCAL_SRC_FILES := \
22 BiometricsFingerprint.cpp \
23 service.cpp
24
25LOCAL_SHARED_LIBRARIES := \
26 libbase \
27 libhardware \
28 libhidlbase \
29 libhidltransport \
30 liblog \
31 libutils \
32 android.hardware.biometrics.fingerprint@2.1
33
Jan Altensen41de6a32019-08-21 23:34:48 +020034ifeq ($(TARGET_SEC_FP_CALL_NOTIFY_ON_CANCEL),true)
35 LOCAL_CFLAGS += -DCALL_NOTIFY_ON_CANCEL
36endif
37
Jan Altensen1813ff92019-08-20 23:20:25 +020038ifeq ($(TARGET_SEC_FP_USES_PERCENTAGE_SAMPLES),true)
39 LOCAL_CFLAGS += -DUSES_PERCENTAGE_SAMPLES
40endif
41
Danny Woode893e322020-02-22 06:36:04 +000042ifeq ($(TARGET_SEC_FP_CALL_CANCEL_ON_ENROLL_COMPLETION),true)
43 LOCAL_CFLAGS += -DCALL_CANCEL_ON_ENROLL_COMPLETION
44endif
45
Jan Altensen1813ff92019-08-20 23:20:25 +020046LOCAL_MODULE := android.hardware.biometrics.fingerprint@2.1-service.samsung
47LOCAL_INIT_RC := android.hardware.biometrics.fingerprint@2.1-service.samsung.rc
48LOCAL_MODULE_RELATIVE_PATH := hw
49LOCAL_MODULE_TAGS := optional
50LOCAL_MODULE_OWNER := samsung
51LOCAL_VENDOR_MODULE := true
52
53include $(BUILD_EXECUTABLE)
Willi Yef6a8f6e2019-11-13 01:38:23 +010054
55include $(call all-makefiles-under,$(LOCAL_PATH))