Files
hardware_interfaces/biometrics/common/thread/Android.bp
Joshua McCloskey c8c0bad864 Refactored biometric libraries into common
Test: atest
Bug: 230514750
Change-Id: I47ad020004ffef9646281611a637e1a5208f5573
2022-05-13 21:18:10 +00:00

27 lines
729 B
Plaintext

cc_library {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "hardware_interfaces_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
name: "android.hardware.biometrics.common.thread",
export_include_dirs: ["include"],
vendor: true,
srcs: [
"WorkerThread.cpp",
],
}
cc_test_host {
name: "android.hardware.biometrics.common.WorkerThreadTest",
local_include_dirs: ["include"],
srcs: [
"tests/WorkerThreadTest.cpp",
"WorkerThread.cpp",
],
shared_libs: [
"libcutils",
],
test_suites: ["general-tests"],
}