mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 17:31:58 +00:00
This will allow SysUI to access the same struct (in I27f119f927b23052c5fd8f068cbca75338fe7b91) that HWC uses to describe its support for DISPLAY_DECORATION. @hide each API individually. SysUI can access hidden APIs. Otherwise leave the AIDL files are unchanged. Bug: 216644902 Test: make Change-Id: Id33f76e4c55b22d007c7e2314a4dfb778562bace
48 lines
1.2 KiB
Plaintext
48 lines
1.2 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: [
|
|
"1",
|
|
"2",
|
|
],
|
|
}
|