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