Bob Badour | c22b35b | 2021-02-23 14:26:20 -0800 | [diff] [blame] | 1 | package { |
Aditya Choudhary | ad2ba1b | 2024-02-05 15:45:22 +0000 | [diff] [blame] | 2 | default_team: "trendy_team_android_core_graphics_stack", |
Bob Badour | c22b35b | 2021-02-23 14:26:20 -0800 | [diff] [blame] | 3 | // 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 | |
Marissa Wall | 03b66e1 | 2019-11-05 14:47:28 -0800 | [diff] [blame] | 11 | aidl_interface { |
Steven Moreland | 926aa80 | 2020-01-06 13:58:00 -0800 | [diff] [blame] | 12 | name: "android.hardware.graphics.common", |
Marissa Wall | 88d87fa | 2019-11-05 14:57:51 -0800 | [diff] [blame] | 13 | host_supported: true, |
Marissa Wall | 03b66e1 | 2019-11-05 14:47:28 -0800 | [diff] [blame] | 14 | vendor_available: true, |
Kiyoung Kim | 9e9d41d | 2024-03-11 13:04:36 +0900 | [diff] [blame] | 15 | double_loadable: true, |
Marissa Wall | 03b66e1 | 2019-11-05 14:47:28 -0800 | [diff] [blame] | 16 | srcs: [ |
| 17 | "android/hardware/graphics/common/*.aidl", |
| 18 | ], |
| 19 | stability: "vintf", |
Pawin Vongmasa | d535133 | 2019-11-12 19:33:23 -0800 | [diff] [blame] | 20 | imports: [ |
Steven Moreland | b196a65 | 2021-08-30 17:56:06 -0700 | [diff] [blame] | 21 | "android.hardware.common-V2", |
Pawin Vongmasa | d535133 | 2019-11-12 19:33:23 -0800 | [diff] [blame] | 22 | ], |
Marissa Wall | 03b66e1 | 2019-11-05 14:47:28 -0800 | [diff] [blame] | 23 | backend: { |
| 24 | java: { |
Leon Scroggins III | bab1ba5 | 2022-02-01 17:54:20 -0500 | [diff] [blame] | 25 | enabled: true, |
| 26 | platform_apis: true, |
Cheng Gu | 974ff63 | 2024-07-02 20:18:26 +0000 | [diff] [blame] | 27 | apex_available: [ |
| 28 | "//apex_available:anyapex", |
| 29 | "//apex_available:platform", |
| 30 | ], |
Marissa Wall | 03b66e1 | 2019-11-05 14:47:28 -0800 | [diff] [blame] | 31 | }, |
| 32 | cpp: { |
| 33 | enabled: false, |
| 34 | }, |
Jooyung Han | 350467d | 2020-05-21 22:46:03 +0900 | [diff] [blame] | 35 | ndk: { |
| 36 | apex_available: [ |
Cheng Gu | 974ff63 | 2024-07-02 20:18:26 +0000 | [diff] [blame] | 37 | "//apex_available:anyapex", |
Jooyung Han | 350467d | 2020-05-21 22:46:03 +0900 | [diff] [blame] | 38 | "//apex_available:platform", |
Jooyung Han | 350467d | 2020-05-21 22:46:03 +0900 | [diff] [blame] | 39 | ], |
| 40 | min_sdk_version: "29", |
| 41 | }, |
Vadim Caen | 60741ed | 2022-10-17 14:11:41 +0000 | [diff] [blame] | 42 | rust: { |
| 43 | enabled: true, |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame] | 44 | }, |
Marissa Wall | 03b66e1 | 2019-11-05 14:47:28 -0800 | [diff] [blame] | 45 | }, |
Devin Moore | a8efdb1 | 2024-02-20 17:31:40 +0000 | [diff] [blame] | 46 | frozen: true, |
Jiyong Park | 9264d3f | 2022-04-28 08:07:53 +0900 | [diff] [blame] | 47 | versions_with_info: [ |
| 48 | { |
| 49 | version: "1", |
| 50 | imports: [ |
| 51 | "android.hardware.common-V2", |
| 52 | ], |
| 53 | }, |
| 54 | { |
| 55 | version: "2", |
| 56 | imports: [ |
| 57 | "android.hardware.common-V2", |
| 58 | ], |
| 59 | }, |
| 60 | { |
| 61 | version: "3", |
| 62 | imports: [ |
| 63 | "android.hardware.common-V2", |
| 64 | ], |
| 65 | }, |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame] | 66 | { |
| 67 | version: "4", |
| 68 | imports: ["android.hardware.common-V2"], |
| 69 | }, |
Devin Moore | a8efdb1 | 2024-02-20 17:31:40 +0000 | [diff] [blame] | 70 | { |
| 71 | version: "5", |
| 72 | imports: ["android.hardware.common-V2"], |
| 73 | }, |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame] | 74 | |
Jiyong Park | 72b6359 | 2021-05-21 11:28:05 +0900 | [diff] [blame] | 75 | ], |
Marissa Wall | 03b66e1 | 2019-11-05 14:47:28 -0800 | [diff] [blame] | 76 | } |