blob: 5bf389b60b1025989b702833d5af582393982c5d [file] [log] [blame]
Bob Badourc22b35b2021-02-23 14:26:20 -08001package {
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
Andrew Scull70934312018-01-03 11:51:54 +000010cc_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",
Andrew Scull70934312018-01-03 11:51:54 +000025 "liblog",
26 "libutils",
27 "android.hardware.authsecret@1.0",
28 ],
29}