This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hardware_oplus-CherishOS/hidl/fingerprint/Android.bp
LuK1337 3dacefed22 fingerprint: Add support for TARGET_USES_FOD_ZPOS
Change-Id: Iaf79d5393169b986197be058ac2166d2e448dfa0
2022-10-01 16:06:19 +02:00

44 lines
1.2 KiB
Plaintext

cc_binary {
name: "android.hardware.biometrics.fingerprint@2.3-service.oplus",
defaults: ["hidl_defaults"],
init_rc: ["android.hardware.biometrics.fingerprint@2.3-service.oplus.rc"],
vintf_fragments: ["android.hardware.biometrics.fingerprint@2.3-service.oplus.xml"],
vendor: true,
relative_install_path: "hw",
srcs: [
"BiometricsFingerprint.cpp",
"service.cpp",
],
shared_libs: [
"libbase",
"libhidlbase",
"libutils",
"android.hardware.biometrics.fingerprint@2.1",
"android.hardware.biometrics.fingerprint@2.2",
"android.hardware.biometrics.fingerprint@2.3",
"vendor.oplus.hardware.biometrics.fingerprint@2.1",
],
header_libs: ["kernel_headers.oplus"],
}
cc_library {
name: "libshims_fingerprint.oplus",
srcs: ["BiometricsFingerprintShim.cpp"],
shared_libs: [
"libcutils",
"liblog",
],
device_specific: true,
}
cc_library_static {
name: "libudfps_extension.oplus",
srcs: ["UdfpsExtension.cpp"],
include_dirs: [
"frameworks/native/services/surfaceflinger/CompositionEngine/include",
],
header_libs: [
"generated_kernel_headers",
],
}