blob: 0b916bff18ebcdf70eba9fde6eed23f7ee6c0854 [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 Reck48c546c2022-11-15 16:29:21 -050015 vndk_use_version: "2",
John Reckef1d9b62022-01-04 11:08:53 -050016 srcs: ["android/hardware/graphics/allocator/*.aidl"],
17 imports: [
18 "android.hardware.common-V2",
sergiuferentz7d7a24d2023-09-27 03:13:04 +000019 "android.hardware.graphics.common-V5",
John Reckef1d9b62022-01-04 11:08:53 -050020 ],
21 stability: "vintf",
22 backend: {
23 cpp: {
24 enabled: false,
25 },
26 java: {
27 enabled: false,
28 },
29 ndk: {
30 apex_available: [
31 "//apex_available:platform",
32 "com.android.media.swcodec",
33 ],
John Reckef1d9b62022-01-04 11:08:53 -050034 min_sdk_version: "29",
35 },
36 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000037 frozen: true,
Jiyong Park70f58372022-04-16 07:03:24 +090038 versions_with_info: [
39 {
40 version: "1",
41 imports: ["android.hardware.common-V2"],
42 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000043 {
44 version: "2",
45 imports: [
46 "android.hardware.common-V2",
sergiuferentz7d7a24d2023-09-27 03:13:04 +000047 "android.hardware.graphics.common-V5",
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000048 ],
49 },
50
Jiyong Park70f58372022-04-16 07:03:24 +090051 ],
52
John Reckef1d9b62022-01-04 11:08:53 -050053}