summaryrefslogtreecommitdiff
path: root/cameraservice/device/aidl/Android.bp
blob: 4691b8f0998256eb344b2aa1c9f7c384364ea9b9 (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
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

aidl_interface {
    name: "android.frameworks.cameraservice.device",
    vendor_available: true,
    srcs: ["android/frameworks/cameraservice/device/*.aidl"],
    stability: "vintf",
    imports: [
        "android.frameworks.cameraservice.common-V1",
        "android.hardware.common.fmq-V1",
        "android.hardware.common-V2",
    ],
    include_dirs: [
        "frameworks/native/aidl/gui",
    ],
    frozen: false,
    backend: {
        cpp: {
            enabled: false,
        },
        rust: {
            enabled: false,
        },
        java: {
            enabled: false,
        },
        ndk: {
            additional_shared_libraries: [
                "libnativewindow",
            ],
            vndk: {
                enabled: true,
            },
        },
    },
    vndk_use_version: "2",
    versions_with_info: [
        {
            version: "1",
            imports: [
                "android.frameworks.cameraservice.common-V1",
                "android.hardware.common.fmq-V1",
                "android.hardware.common-V2",
            ],
        },
    ],

}