summaryrefslogtreecommitdiff
path: root/display/Android.bp
blob: 31542e920e45c630d5fb8733128a6f988809c98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["Android-Apache-2.0"],
}

aidl_interface {
    name: "com.google.hardware.pixel.display",
    owner: "google",
    vendor_available: true,
    srcs: [
        "com/google/hardware/pixel/display/*.aidl",
    ],

    stability: "vintf",

    imports: [
        "android.hardware.common-V2",
        "android.hardware.graphics.common-V5",
    ],

    backend: {
        java: {
            platform_apis: true,
        },
        cpp: {
            enabled: false,
        },
    },
    versions_with_info: [
        {
            version: "1",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "2",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "3",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "4",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "5",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "6",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "7",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "8",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "9",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },
        {
            version: "10",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
            ],
        },

    ],
    frozen: true,

}