Hayden Gomes | 49c845f | 2020-10-27 13:01:33 -0700 | [diff] [blame] | 1 | // This is the expected build file, but it may not be right in all cases |
| 2 | |
Bob Badour | c22b35b | 2021-02-23 14:26:20 -0800 | [diff] [blame] | 3 | package { |
| 4 | // See: http://go/android-license-faq |
| 5 | // A large-scale-change added 'default_applicable_licenses' to import |
| 6 | // all of the 'license_kinds' from "hardware_interfaces_license" |
| 7 | // to get the below license kinds: |
| 8 | // SPDX-license-identifier-Apache-2.0 |
| 9 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 10 | } |
| 11 | |
Hayden Gomes | 49c845f | 2020-10-27 13:01:33 -0700 | [diff] [blame] | 12 | aidl_interface { |
| 13 | name: "android.hardware.automotive.audiocontrol", |
| 14 | vendor_available: true, |
| 15 | srcs: ["android/hardware/automotive/audiocontrol/*.aidl"], |
Francois Gaffie | 5d7af1e | 2022-02-02 11:12:08 +0100 | [diff] [blame] | 16 | imports: [ |
Jiyong Park | 0c7505f | 2022-04-16 08:32:29 +0900 | [diff] [blame] | 17 | "android.hardware.audio.common-V1", |
Lorena Torres-Huerta | 8296aa8 | 2022-08-29 21:48:01 +0000 | [diff] [blame] | 18 | "android.media.audio.common.types-V2", |
Francois Gaffie | 5d7af1e | 2022-02-02 11:12:08 +0100 | [diff] [blame] | 19 | ], |
Hayden Gomes | 49c845f | 2020-10-27 13:01:33 -0700 | [diff] [blame] | 20 | stability: "vintf", |
| 21 | backend: { |
| 22 | java: { |
| 23 | sdk_version: "module_current", |
Keun young Park | 8791c7e | 2021-10-05 16:11:07 -0700 | [diff] [blame] | 24 | min_sdk_version: "31", |
| 25 | apex_available: [ |
| 26 | "//apex_available:platform", |
| 27 | "com.android.car.framework", |
| 28 | ], |
Hayden Gomes | 49c845f | 2020-10-27 13:01:33 -0700 | [diff] [blame] | 29 | }, |
| 30 | }, |
Jiyong Park | 703e979 | 2022-03-22 14:18:48 +0900 | [diff] [blame] | 31 | versions_with_info: [ |
| 32 | { |
| 33 | version: "1", |
| 34 | imports: [ |
| 35 | "android.hardware.audio.common-V1", |
Lorena Torres-Huerta | 8296aa8 | 2022-08-29 21:48:01 +0000 | [diff] [blame] | 36 | "android.media.audio.common.types-V2", |
Jiyong Park | 703e979 | 2022-03-22 14:18:48 +0900 | [diff] [blame] | 37 | ], |
| 38 | }, |
| 39 | { |
| 40 | version: "2", |
| 41 | imports: [ |
| 42 | "android.hardware.audio.common-V1", |
Lorena Torres-Huerta | 8296aa8 | 2022-08-29 21:48:01 +0000 | [diff] [blame] | 43 | "android.media.audio.common.types-V2", |
Jiyong Park | 703e979 | 2022-03-22 14:18:48 +0900 | [diff] [blame] | 44 | ], |
| 45 | }, |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame^] | 46 | { |
| 47 | version: "3", |
| 48 | imports: [ |
| 49 | "android.hardware.audio.common-V1", |
| 50 | "android.media.audio.common.types-V2", |
| 51 | ], |
| 52 | }, |
Jiyong Park | 703e979 | 2022-03-22 14:18:48 +0900 | [diff] [blame] | 53 | |
Francois Gaffie | 5d7af1e | 2022-02-02 11:12:08 +0100 | [diff] [blame] | 54 | ], |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame^] | 55 | frozen: true, |
Jiyong Park | 703e979 | 2022-03-22 14:18:48 +0900 | [diff] [blame] | 56 | |
Hayden Gomes | 49c845f | 2020-10-27 13:01:33 -0700 | [diff] [blame] | 57 | } |