blob: 30b341cd8a4668c37d322dba12af416987d1d5cc [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"],
Eino-Ville Talvalaa65c9af2024-10-16 17:48:22 -070016 defaults: [
17 "android.hardware.graphics.common-latest",
18 ],
John Reckef1d9b62022-01-04 11:08:53 -050019 imports: [
20 "android.hardware.common-V2",
21 ],
22 stability: "vintf",
23 backend: {
24 cpp: {
25 enabled: false,
26 },
27 java: {
28 enabled: false,
29 },
30 ndk: {
31 apex_available: [
32 "//apex_available:platform",
33 "com.android.media.swcodec",
34 ],
John Reckef1d9b62022-01-04 11:08:53 -050035 min_sdk_version: "29",
36 },
37 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000038 frozen: true,
Jiyong Park70f58372022-04-16 07:03:24 +090039 versions_with_info: [
40 {
41 version: "1",
42 imports: ["android.hardware.common-V2"],
43 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000044 {
45 version: "2",
46 imports: [
47 "android.hardware.common-V2",
sergiuferentz7d7a24d2023-09-27 03:13:04 +000048 "android.hardware.graphics.common-V5",
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000049 ],
50 },
51
Jiyong Park70f58372022-04-16 07:03:24 +090052 ],
53
John Reckef1d9b62022-01-04 11:08:53 -050054}