blob: 188b14ee6fbf8be7069ba7bbe37e72160721c4a6 [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,
14 vndk: {
15 enabled: true,
16 support_system_process: true,
17 },
John Reck48c546c2022-11-15 16:29:21 -050018 vndk_use_version: "2",
John Reckef1d9b62022-01-04 11:08:53 -050019 srcs: ["android/hardware/graphics/allocator/*.aidl"],
20 imports: [
21 "android.hardware.common-V2",
John Reck73f935c2022-11-15 16:18:42 -050022 "android.hardware.graphics.common-V4",
John Reckef1d9b62022-01-04 11:08:53 -050023 ],
24 stability: "vintf",
25 backend: {
26 cpp: {
27 enabled: false,
28 },
29 java: {
30 enabled: false,
31 },
32 ndk: {
33 apex_available: [
34 "//apex_available:platform",
35 "com.android.media.swcodec",
36 ],
37 vndk: {
38 enabled: true,
39 },
40 min_sdk_version: "29",
41 },
42 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000043 frozen: true,
Jiyong Park70f58372022-04-16 07:03:24 +090044 versions_with_info: [
45 {
46 version: "1",
47 imports: ["android.hardware.common-V2"],
48 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000049 {
50 version: "2",
51 imports: [
52 "android.hardware.common-V2",
53 "android.hardware.graphics.common-V4",
54 ],
55 },
56
Jiyong Park70f58372022-04-16 07:03:24 +090057 ],
58
John Reckef1d9b62022-01-04 11:08:53 -050059}