mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 05:49:27 +00:00
This makes sure that when developers add a new version of an interface, or when interfaces are being frozen, the runtime/buildtime situation of clients depending on those interfaces remains the same. This is required for AIDL to continue working at scale. Bug: 188871598 Test: build Change-Id: I2a30859548cd676f9329007590a53c4916a1c0ef
35 lines
870 B
Plaintext
35 lines
870 B
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
aidl_interface {
|
|
name: "android.hardware.common.fmq",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: true,
|
|
support_system_process: true,
|
|
},
|
|
srcs: [
|
|
"android/hardware/common/fmq/*.aidl",
|
|
],
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
],
|
|
stability: "vintf",
|
|
backend: {
|
|
java: {
|
|
sdk_version: "module_current",
|
|
srcs_available: true,
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|