1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5aidl_interface {
6    name: "android.frameworks.cameraservice.service",
7    vendor_available: true,
8    srcs: ["android/frameworks/cameraservice/service/*.aidl"],
9    stability: "vintf",
10    imports: [
11        "android.frameworks.cameraservice.common-V1",
12        "android.frameworks.cameraservice.device-V3",
13    ],
14    frozen: false,
15    backend: {
16        cpp: {
17            enabled: false,
18        },
19        rust: {
20            enabled: false,
21        },
22        java: {
23            enabled: false,
24        },
25        ndk: {
26            additional_shared_libraries: [
27                "libnativewindow",
28            ],
29        },
30    },
31    versions_with_info: [
32        {
33            version: "1",
34            imports: [
35                "android.frameworks.cameraservice.common-V1",
36                "android.frameworks.cameraservice.device-V1",
37            ],
38        },
39        {
40            version: "2",
41            imports: [
42                "android.frameworks.cameraservice.common-V1",
43                "android.frameworks.cameraservice.device-V2",
44            ],
45        },
46
47    ],
48
49}
50