blob: 272ab4880948f6cfdb13fd9852596798f3bcfc15 [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",
20 ],
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 ],
34 vndk: {
35 enabled: true,
36 },
37 min_sdk_version: "29",
38 },
39 },
Jiyong Park70f58372022-04-16 07:03:24 +090040 versions_with_info: [
41 {
42 version: "1",
43 imports: ["android.hardware.common-V2"],
44 },
45 ],
46
John Reckef1d9b62022-01-04 11:08:53 -050047}