93ea25ca9b
magic -> explicit Bug: 259465531 Test: build Change-Id: I700814bcbc7557b78d8dc708cbeeb33049250a9d
42 lines
1 KiB
Text
42 lines
1 KiB
Text
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",
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
ndk: {
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.btservices",
|
|
],
|
|
min_sdk_version: "29",
|
|
},
|
|
},
|
|
frozen: true,
|
|
versions: ["1"],
|
|
}
|