• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "hardware_interfaces_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10aidl_interface {
11    name: "android.hardware.camera.provider",
12    vendor_available: true,
13    srcs: [
14        "android/hardware/camera/provider/*.aidl",
15    ],
16    imports: [
17        "android.hardware.camera.device-V2",
18        "android.hardware.camera.common-V1",
19    ],
20    frozen: true,
21    stability: "vintf",
22    backend: {
23        java: {
24            enabled: false,
25        },
26        cpp: {
27            enabled: false,
28        },
29    },
30    versions_with_info: [
31        {
32            version: "1",
33            imports: [
34                "android.hardware.camera.device-V1",
35                "android.hardware.camera.common-V1",
36            ],
37        },
38        {
39            version: "2",
40            imports: [
41                "android.hardware.camera.device-V2",
42                "android.hardware.camera.common-V1",
43            ],
44        },
45
46    ],
47
48}
49