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