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 "hardware_interfaces_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10cc_binary {
11    name: "android.hardware.authsecret@1.0-service",
12    init_rc: ["android.hardware.authsecret@1.0-service.rc"],
13    relative_install_path: "hw",
14    vendor: true,
15    srcs: [
16        "service.cpp",
17        "AuthSecret.cpp",
18    ],
19    cflags: [
20        "-Wall",
21        "-Werror",
22    ],
23    shared_libs: [
24        "libhidlbase",
25        "liblog",
26        "libutils",
27        "android.hardware.authsecret@1.0",
28    ],
29}
30