• 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
10aidl_interface {
11    name: "android.hardware.tv.input",
12    vendor_available: true,
13    srcs: ["android/hardware/tv/input/*.aidl"],
14    imports: [
15        "android.hardware.common-V2",
16        "android.media.audio.common.types-V1",
17        "android.hardware.common.fmq-V1",
18    ],
19    stability: "vintf",
20    backend: {
21        java: {
22            sdk_version: "module_current",
23        },
24        cpp: {
25            enabled: false,
26        },
27    },
28    versions_with_info: [
29        {
30            version: "1",
31            imports: [
32                "android.hardware.common-V2",
33                "android.media.audio.common.types-V1",
34                "android.hardware.common.fmq-V1",
35            ],
36        },
37    ],
38    frozen: true,
39
40}
41