summaryrefslogtreecommitdiff
path: root/audio_proxy/interfaces/aidl/Android.bp
blob: 56ad152907ae4a1c8d5391caee91941bb9129b7c (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
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

aidl_interface {
    name: "device.google.atv.audio_proxy-aidl",
    vendor_available: true,
    system_ext_specific: true,
    srcs: [
        "device/google/atv/audio_proxy/*.aidl",
    ],
    imports: [
        "android.hardware.common-V2",
        "android.hardware.common.fmq-V1",
    ],
    stability: "vintf",
    frozen: true,
    backend: {
        ndk: {
            enabled: true,
        },
        java: {
            enabled: false,
        },
        cpp: {
            enabled: false,
        },
    },
    versions_with_info: [
        {
            version: "1",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.common.fmq-V1",
            ],
        },
        {
            version: "2",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.common.fmq-V1",
            ],
        },
        {
            version: "3",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.common.fmq-V1",
            ],
        },
    ],
}