blob: cd4885b8ea88594b6a84257f79876a4af144bece [file] [log] [blame]
John Reckef1d9b62022-01-04 11:08:53 -05001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "hardware_interfaces_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10aidl_interface {
11 name: "android.hardware.graphics.allocator",
12 vendor_available: true,
13 vndk: {
14 enabled: true,
15 support_system_process: true,
16 },
17 srcs: ["android/hardware/graphics/allocator/*.aidl"],
18 imports: [
19 "android.hardware.common-V2",
John Reck73f935c2022-11-15 16:18:42 -050020 "android.hardware.graphics.common-V4",
John Reckef1d9b62022-01-04 11:08:53 -050021 ],
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 ],
35 vndk: {
36 enabled: true,
37 },
38 min_sdk_version: "29",
39 },
40 },
Jiyong Park70f58372022-04-16 07:03:24 +090041 versions_with_info: [
42 {
43 version: "1",
44 imports: ["android.hardware.common-V2"],
45 },
46 ],
47
John Reckef1d9b62022-01-04 11:08:53 -050048}