1package {
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 "device_google_gs101_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["device_google_gs101_license"],
8}
9
10cc_binary {
11    srcs: [
12        "fp_test.cpp"
13    ],
14    include_dirs: [
15        "device/google/gs101/fingerprint/fpc1540/fp_tool"
16    ],
17    name: "fp_test",
18    shared_libs: [
19        "liblog",
20        "libdl",
21        "libutils",
22        "libcutils",
23        "libhidlbase",
24        "android.hardware.biometrics.fingerprint@2.1"
25    ],
26    proprietary:true,
27
28}
29