1cc_library { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "hardware_interfaces_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 name: "android.hardware.biometrics.common.thread", 8 export_include_dirs: ["include"], 9 vendor: true, 10 srcs: [ 11 "WorkerThread.cpp", 12 ], 13} 14 15cc_test_host { 16 name: "android.hardware.biometrics.common.WorkerThreadTest", 17 local_include_dirs: ["include"], 18 srcs: [ 19 "tests/WorkerThreadTest.cpp", 20 "WorkerThread.cpp", 21 ], 22 shared_libs: [ 23 "libcutils", 24 ], 25 test_suites: ["general-tests"], 26} 27