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 aac564e031 fingerprint: Add __system_property_get() shim for certain FOD impls
It seems like OnePlus 7 and 8 series sadly depend on these props.

Change-Id: I728a9ea63ded6c79873dd7350a06cc1f40ca92b7
2022-07-24 11:04:04 +02:00

41 lines
1.1 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",
],
}