mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
This is the initial AIDL interface based on the HIDL interface android.hardware.graphics.composer@2.4. Test: Build Bug: 198690211 Change-Id: I385ea8084f9a33c2b6dd79bb9a376692fec4a399
47 lines
1.1 KiB
Plaintext
47 lines
1.1 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: false,
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
ndk: {
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.media.swcodec",
|
|
"com.android.neuralnetworks",
|
|
],
|
|
min_sdk_version: "29",
|
|
},
|
|
},
|
|
versions: [
|
|
"1",
|
|
"2",
|
|
],
|
|
}
|