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.tv.input-service.example", 12 relative_install_path: "hw", 13 init_rc: ["input-default.rc"], 14 vintf_fragments: ["input-default.xml"], 15 vendor: true, 16 cflags: [ 17 "-Werror", 18 "-Wno-unused-parameter", 19 ], 20 srcs: [ 21 "TvInput.cpp", 22 "service.cpp", 23 ], 24 static_libs: [ 25 "libaidlcommonsupport", 26 ], 27 shared_libs: [ 28 "libbase", 29 "liblog", 30 "libfmq", 31 "libutils", 32 "libcutils", 33 "libbinder_ndk", 34 "android.hardware.tv.input-V1-ndk", 35 "android.hardware.common.fmq-V1-ndk", 36 ], 37} 38