• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_team: "trendy_team_fwk_telephony",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "hardware_interfaces_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["hardware_interfaces_license"],
9}
10
11cc_binary {
12    name: "android.hardware.radio.config@1.0-service",
13    init_rc: ["android.hardware.radio.config@1.0-service.rc"],
14    relative_install_path: "hw",
15    vendor: true,
16    srcs: [
17        "RadioConfig.cpp",
18        "RadioConfigIndication.cpp",
19        "RadioConfigResponse.cpp",
20        "service.cpp",
21    ],
22    shared_libs: [
23        "libhidlbase",
24        "liblog",
25        "libutils",
26        "android.hardware.radio.config@1.0",
27        "android.hardware.radio@1.0",
28    ],
29}
30