1package {
2    // See: http://go/android-license-faq
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6aidl_interface {
7    name: "com.google.hardware.pixel.display",
8    owner: "google",
9    vendor_available: true,
10    srcs: [
11        "com/google/hardware/pixel/display/*.aidl",
12    ],
13
14    stability: "vintf",
15
16    imports: [
17        "android.hardware.common-V2",
18        "android.hardware.graphics.common-V5",
19    ],
20
21    backend: {
22        java: {
23            platform_apis: true,
24        },
25        cpp: {
26            enabled: false,
27        },
28    },
29    versions_with_info: [
30        {
31            version: "1",
32            imports: [
33                "android.hardware.common-V2",
34                "android.hardware.graphics.common-V5",
35            ],
36        },
37        {
38            version: "2",
39            imports: [
40                "android.hardware.common-V2",
41                "android.hardware.graphics.common-V5",
42            ],
43        },
44        {
45            version: "3",
46            imports: [
47                "android.hardware.common-V2",
48                "android.hardware.graphics.common-V5",
49            ],
50        },
51        {
52            version: "4",
53            imports: [
54                "android.hardware.common-V2",
55                "android.hardware.graphics.common-V5",
56            ],
57        },
58        {
59            version: "5",
60            imports: [
61                "android.hardware.common-V2",
62                "android.hardware.graphics.common-V5",
63            ],
64        },
65        {
66            version: "6",
67            imports: [
68                "android.hardware.common-V2",
69                "android.hardware.graphics.common-V5",
70            ],
71        },
72        {
73            version: "7",
74            imports: [
75                "android.hardware.common-V2",
76                "android.hardware.graphics.common-V5",
77            ],
78        },
79        {
80            version: "8",
81            imports: [
82                "android.hardware.common-V2",
83                "android.hardware.graphics.common-V5",
84            ],
85        },
86        {
87            version: "9",
88            imports: [
89                "android.hardware.common-V2",
90                "android.hardware.graphics.common-V5",
91            ],
92        },
93        {
94            version: "10",
95            imports: [
96                "android.hardware.common-V2",
97                "android.hardware.graphics.common-V5",
98            ],
99        },
100        {
101            version: "11",
102            imports: [
103                "android.hardware.common-V2",
104                "android.hardware.graphics.common-V5",
105            ],
106        },
107        {
108            version: "12",
109            imports: [
110                "android.hardware.common-V2",
111                "android.hardware.graphics.common-V5",
112            ],
113        },
114
115    ],
116    frozen: true,
117
118}
119