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