blob: e221ceb9fcef4e2b30a53854c56fd56a82f4233e [file] [log] [blame]
Bob Badourb224b362021-02-12 20:13:01 -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
yinxu26487e72018-01-22 16:29:00 -080010cc_binary {
11 name: "android.hardware.radio.config@1.0-service",
12 init_rc: ["android.hardware.radio.config@1.0-service.rc"],
13 relative_install_path: "hw",
14 vendor: true,
15 srcs: [
16 "RadioConfig.cpp",
17 "RadioConfigIndication.cpp",
18 "RadioConfigResponse.cpp",
19 "service.cpp",
20 ],
21 shared_libs: [
22 "libhidlbase",
yinxu26487e72018-01-22 16:29:00 -080023 "liblog",
24 "libutils",
25 "android.hardware.radio.config@1.0",
26 "android.hardware.radio@1.0",
27 ],
28}