Files
hardware_interfaces/graphics/common/aidl/Android.bp
Jiyong Park 9264d3f783 Finalize android.hardware.graphics.common-V3
For some unknown reason, the Android.bp file was not updated when
freezeing the V3 of android.hardware.graphics.common interface. Fixing
it manually.

Bug: 230660133
Test: `m nothing` with https://googleplex-android-review.git.corp.google.com/q/topic:Tiramisu-SDK-Finalization-rel
Change-Id: I4bf6548e1200864810bcf8a7c1025ba56d48747b
2022-04-28 08:07:53 +09:00

64 lines
1.5 KiB
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.graphics.common",
host_supported: true,
vendor_available: true,
vndk: {
enabled: true,
support_system_process: true,
},
vndk_use_version: "3",
srcs: [
"android/hardware/graphics/common/*.aidl",
],
stability: "vintf",
imports: [
"android.hardware.common-V2",
],
backend: {
java: {
enabled: true,
platform_apis: true,
},
cpp: {
enabled: false,
},
ndk: {
apex_available: [
"//apex_available:platform",
"com.android.media.swcodec",
"com.android.neuralnetworks",
],
min_sdk_version: "29",
},
},
versions_with_info: [
{
version: "1",
imports: [
"android.hardware.common-V2",
],
},
{
version: "2",
imports: [
"android.hardware.common-V2",
],
},
{
version: "3",
imports: [
"android.hardware.common-V2",
],
},
],
}