You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
//
|
|
// Copyright (C) 2024 The LineageOS Project
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_binary {
|
|
name: "android.hardware.biometrics.fingerprint-service.samsung",
|
|
relative_install_path: "hw",
|
|
init_rc: ["android.hardware.biometrics.fingerprint-service.samsung.rc"],
|
|
vintf_fragments: ["android.hardware.biometrics.fingerprint-service.samsung.xml"],
|
|
srcs: [
|
|
"CancellationSignal.cpp",
|
|
"Fingerprint.cpp",
|
|
"LegacyHAL.cpp",
|
|
"LockoutTracker.cpp",
|
|
"Session.cpp",
|
|
"service.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libbinder_ndk",
|
|
"libhardware",
|
|
"android.hardware.biometrics.fingerprint-V4-ndk",
|
|
"android.hardware.biometrics.common-V4-ndk",
|
|
"android.hardware.biometrics.common.util",
|
|
],
|
|
static_libs: ["libandroid.hardware.biometrics.fingerprint.SamsungProps"],
|
|
vendor: true,
|
|
}
|
|
|
|
sysprop_library {
|
|
name: "android.hardware.biometrics.fingerprint.SamsungProps",
|
|
srcs: ["fingerprint.sysprop"],
|
|
property_owner: "Vendor",
|
|
vendor: true,
|
|
}
|
|
|