Bob Badour | c22b35b | 2021-02-23 14:26:20 -0800 | [diff] [blame] | 1 | package { |
| 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 | |
sqian | 031a6a8 | 2018-04-06 20:50:58 -0700 | [diff] [blame] | 10 | cc_binary { |
| 11 | name: "android.hardware.radio@1.2-radio-service", |
| 12 | init_rc: ["android.hardware.radio@1.2-radio-service.rc"], |
| 13 | relative_install_path: "hw", |
| 14 | vendor: true, |
| 15 | srcs: [ |
| 16 | "Radio.cpp", |
| 17 | "radio-service.cpp", |
| 18 | ], |
| 19 | shared_libs: [ |
| 20 | "libhidlbase", |
sqian | 031a6a8 | 2018-04-06 20:50:58 -0700 | [diff] [blame] | 21 | "liblog", |
| 22 | "libutils", |
| 23 | "android.hardware.radio@1.2", |
| 24 | "android.hardware.radio@1.0", |
| 25 | "android.hardware.radio@1.1", |
| 26 | ], |
| 27 | } |
| 28 | |
| 29 | cc_binary { |
| 30 | name: "android.hardware.radio@1.2-sap-service", |
| 31 | init_rc: ["android.hardware.radio@1.2-sap-service.rc"], |
| 32 | relative_install_path: "hw", |
| 33 | vendor: true, |
| 34 | srcs: [ |
| 35 | "Sap.cpp", |
| 36 | "sap-service.cpp", |
| 37 | ], |
| 38 | shared_libs: [ |
| 39 | "libhidlbase", |
sqian | 031a6a8 | 2018-04-06 20:50:58 -0700 | [diff] [blame] | 40 | "liblog", |
| 41 | "libutils", |
| 42 | "android.hardware.radio@1.2", |
| 43 | "android.hardware.radio@1.0", |
| 44 | "android.hardware.radio@1.1", |
| 45 | ], |
| 46 | } |