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: "[email protected]", 12 init_rc: ["[email protected]"], 13 relative_install_path: "hw", 14 vendor: true, 15 srcs: [ 16 "Radio.cpp", 17 "radio-service.cpp", 18 ], 19 shared_libs: [ 20 "libhidlbase", 21 "liblog", 22 "libutils", 23 "[email protected]", 24 "[email protected]", 25 "[email protected]", 26 ], 27} 28 29cc_binary { 30 name: "[email protected]", 31 init_rc: ["[email protected]"], 32 relative_install_path: "hw", 33 vendor: true, 34 srcs: [ 35 "Sap.cpp", 36 "sap-service.cpp", 37 ], 38 shared_libs: [ 39 "libhidlbase", 40 "liblog", 41 "libutils", 42 "[email protected]", 43 "[email protected]", 44 "[email protected]", 45 ], 46} 47