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.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",
23        "liblog",
24        "libutils",
25        "android.hardware.radio.config@1.0",
26        "android.hardware.radio@1.0",
27    ],
28}
29