• 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            sdk_version: "module_current",
28        },
29        cpp: {
30            enabled: false,
31        },
32        ndk: {
33            apex_available: [
34                "//apex_available:platform",
35                "com.android.bluetooth",
36            ],
37            min_sdk_version: "29",
38        },
39    },
40    versions: ["1"],
41}
42