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