summaryrefslogtreecommitdiff
path: root/cameraservice/device/aidl/Android.bp
blob: 1f50af3c8b4524f9e6a176af6c4cac70a32f5f85 (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
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_use_version: "2",
    versions_with_info: [
        {
            version: "1",
            imports: [
                "android.frameworks.cameraservice.common-V1",
                "android.hardware.common.fmq-V1",
                "android.hardware.common-V2",
            ],
        },
    ],

}