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_test { 12 name: "VtsHalTvInputTargetTest", 13 defaults: [ 14 "VtsHalTargetTestDefaults", 15 "use_libaidlvintf_gtest_helper_static", 16 ], 17 cflags: [ 18 "-Werror", 19 "-Wno-unused-parameter", 20 ], 21 srcs: ["VtsHalTvInputTargetTest.cpp"], 22 static_libs: [ 23 "android.media.audio.common.types-V1-ndk", 24 "android.hardware.common-V2-ndk", 25 "libaidlcommonsupport", 26 "android.hardware.tv.input-V2-ndk", 27 ], 28 test_suites: [ 29 "general-tests", 30 "vts", 31 ], 32 shared_libs: [ 33 "libbinder_ndk", 34 "libvndksupport", 35 "libfmq", 36 "android.hardware.common.fmq-V1-ndk", 37 ], 38 require_root: true, 39} 40