• 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.common.fmq",
12    host_supported: true,
13    vendor_available: true,
14    vndk: {
15        enabled: true,
16        support_system_process: true,
17    },
18    srcs: [
19        "android/hardware/common/fmq/*.aidl",
20    ],
21    imports: [
22        "android.hardware.common-V2",
23    ],
24    stability: "vintf",
25    backend: {
26        java: {
27            // There is no Java FMQ library, but we support the AIDL type
28            // to allow subsets of interfaces that include it to be used in Java
29            enabled: true,
30            sdk_version: "module_current",
31        },
32        cpp: {
33            // FMQ will not be supported in the cpp backend because the parcelables
34            // are not stable enough for use in shared memory
35            enabled: false,
36        },
37        ndk: {
38            apex_available: [
39                "//apex_available:platform",
40                "com.android.btservices",
41                "com.android.media.swcodec",
42            ],
43            min_sdk_version: "29",
44        },
45        rust: {
46            // FMQ is not supported in the rust backend
47            enabled: false,
48        },
49    },
50    frozen: true,
51    versions_with_info: [
52        {
53            version: "1",
54            imports: ["android.hardware.common-V2"],
55        },
56    ],
57}
58