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