• 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.graphics.common",
12    host_supported: true,
13    vendor_available: true,
14    vndk: {
15        enabled: true,
16        support_system_process: true,
17    },
18    vndk_use_version: "3",
19    srcs: [
20        "android/hardware/graphics/common/*.aidl",
21    ],
22    stability: "vintf",
23    imports: [
24        "android.hardware.common-V2",
25    ],
26    backend: {
27        java: {
28            enabled: true,
29            platform_apis: true,
30        },
31        cpp: {
32            enabled: false,
33        },
34        ndk: {
35            apex_available: [
36                "//apex_available:platform",
37                "com.android.media.swcodec",
38                "com.android.neuralnetworks",
39            ],
40            min_sdk_version: "29",
41        },
42    },
43    versions_with_info: [
44        {
45            version: "1",
46            imports: [
47                "android.hardware.common-V2",
48            ],
49        },
50        {
51            version: "2",
52            imports: [
53                "android.hardware.common-V2",
54            ],
55        },
56        {
57            version: "3",
58            imports: [
59                "android.hardware.common-V2",
60            ],
61        },
62    ],
63}
64