mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Vndk_use_version property is no longer in use with deprecation of VNDK. Remove Vndk_use_version property and its usage. Bug: 328994089 Test: AOSP CF build succeeded Change-Id: I681cc850341a7dc47416dc81c1da21b687f87b1b
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
package {
|
|
default_team: "trendy_team_android_core_graphics_stack",
|
|
// 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.graphics.allocator",
|
|
vendor_available: true,
|
|
double_loadable: true,
|
|
srcs: ["android/hardware/graphics/allocator/*.aidl"],
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
"android.hardware.graphics.common-V5",
|
|
],
|
|
stability: "vintf",
|
|
backend: {
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
java: {
|
|
enabled: false,
|
|
},
|
|
ndk: {
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.media.swcodec",
|
|
],
|
|
min_sdk_version: "29",
|
|
},
|
|
},
|
|
frozen: true,
|
|
versions_with_info: [
|
|
{
|
|
version: "1",
|
|
imports: ["android.hardware.common-V2"],
|
|
},
|
|
{
|
|
version: "2",
|
|
imports: [
|
|
"android.hardware.common-V2",
|
|
"android.hardware.graphics.common-V5",
|
|
],
|
|
},
|
|
|
|
],
|
|
|
|
}
|