blob: 1ab724f097cdd66f30b6e2ac7f783cc45944e96a [file] [log] [blame]
Bob Badourc22b35b2021-02-23 14:26:20 -08001package {
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
Devin Moore14b2cbe2020-10-09 10:46:38 -070010aidl_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 ],
Devin Moore17365e52021-01-18 16:11:20 -080021 imports: [
22 "android.hardware.common",
23 ],
Devin Moore14b2cbe2020-10-09 10:46:38 -070024 stability: "vintf",
25 backend: {
26 java: {
27 enabled: false,
28 },
29 cpp: {
30 enabled: false,
31 },
32 },
33}