blob: 7bb6b504bfcf16d78da43ef5a4f7b5158b372a0b [file] [log] [blame]
John Reckef1d9b62022-01-04 11:08:53 -05001package {
Aditya Choudharyad2ba1b2024-02-05 15:45:22 +00002 default_team: "trendy_team_android_core_graphics_stack",
John Reckef1d9b62022-01-04 11:08:53 -05003 // See: http://go/android-license-faq
4 // A large-scale-change added 'default_applicable_licenses' to import
5 // all of the 'license_kinds' from "hardware_interfaces_license"
6 // to get the below license kinds:
7 // SPDX-license-identifier-Apache-2.0
8 default_applicable_licenses: ["hardware_interfaces_license"],
9}
10
11aidl_interface {
12 name: "android.hardware.graphics.allocator",
13 vendor_available: true,
Kiyoung Kim9e9d41d2024-03-11 13:04:36 +090014 double_loadable: true,
John Reckef1d9b62022-01-04 11:08:53 -050015 srcs: ["android/hardware/graphics/allocator/*.aidl"],
16 imports: [
17 "android.hardware.common-V2",
sergiuferentz7d7a24d2023-09-27 03:13:04 +000018 "android.hardware.graphics.common-V5",
John Reckef1d9b62022-01-04 11:08:53 -050019 ],
20 stability: "vintf",
21 backend: {
22 cpp: {
23 enabled: false,
24 },
25 java: {
26 enabled: false,
27 },
28 ndk: {
29 apex_available: [
30 "//apex_available:platform",
31 "com.android.media.swcodec",
32 ],
John Reckef1d9b62022-01-04 11:08:53 -050033 min_sdk_version: "29",
34 },
35 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000036 frozen: true,
Jiyong Park70f58372022-04-16 07:03:24 +090037 versions_with_info: [
38 {
39 version: "1",
40 imports: ["android.hardware.common-V2"],
41 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000042 {
43 version: "2",
44 imports: [
45 "android.hardware.common-V2",
sergiuferentz7d7a24d2023-09-27 03:13:04 +000046 "android.hardware.graphics.common-V5",
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000047 ],
48 },
49
Jiyong Park70f58372022-04-16 07:03:24 +090050 ],
51
John Reckef1d9b62022-01-04 11:08:53 -050052}