hardware_xiaomi/fingerprint/Android.bp
basamaryan 54166cb529 fingerprint: Move UDFPS handler and extension out of HIDL
Change-Id: Ib78169536cfb3c96b8437dc9b3341837c31c7362
2024-12-26 01:51:48 +00:00

32 lines
735 B
Plaintext

//
// Copyright (C) 2022-2024 The LineageOS Project
//
// SPDX-License-Identifier: Apache-2.0
//
cc_library_static {
name: "libudfpshandlerfactory",
srcs: ["UdfpsHandler.cpp"],
vendor: true,
header_libs: ["xiaomifingerprint_headers"],
}
cc_library_headers {
name: "xiaomifingerprint_headers",
export_include_dirs: ["include"],
vendor: true,
header_libs: ["libhardware_headers"],
export_header_lib_headers: ["libhardware_headers"],
}
cc_library_static {
name: "libudfps_extension.xiaomi",
srcs: ["UdfpsExtension.cpp"],
include_dirs: [
"frameworks/native/services/surfaceflinger/CompositionEngine/include",
],
header_libs: [
"generated_kernel_headers",
],
}