Files
hardware_interfaces/graphics/allocator/aidl/Android.bp
Eino-Ville Talvala 50b9157605 Graphics: Add Rust and AIDL defaults for graphics HALS, migrate usages
- Add new defaults for Rust and AIDL graphics HAL library references
- Migrate HAL interfaces to use new AIDL defaults

This is in preparation for upgrading the graphics.common HAL to V6.

Test: Builds
Bug: 368395888
Flag: EXEMPT build changes
Change-Id: I9d312328255226fbd7162b9dfd151dfa823f1858
2024-10-16 17:48:22 -07:00

55 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"],
defaults: [
"android.hardware.graphics.common-latest",
],
imports: [
"android.hardware.common-V2",
],
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",
],
},
],
}