blob: 9ae77cdea94e1f2c5cd5ef0b5cd90c2953726ae5 [file] [log] [blame]
Hayden Gomes49c845f2020-10-27 13:01:33 -07001// This is the expected build file, but it may not be right in all cases
2
Bob Badourc22b35b2021-02-23 14:26:20 -08003package {
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 Gomes49c845f2020-10-27 13:01:33 -070012aidl_interface {
13 name: "android.hardware.automotive.audiocontrol",
14 vendor_available: true,
15 srcs: ["android/hardware/automotive/audiocontrol/*.aidl"],
Francois Gaffie5d7af1e2022-02-02 11:12:08 +010016 imports: [
Jiyong Park0c7505f2022-04-16 08:32:29 +090017 "android.hardware.audio.common-V1",
Lorena Torres-Huerta8296aa82022-08-29 21:48:01 +000018 "android.media.audio.common.types-V2",
Francois Gaffie5d7af1e2022-02-02 11:12:08 +010019 ],
Hayden Gomes49c845f2020-10-27 13:01:33 -070020 stability: "vintf",
21 backend: {
22 java: {
23 sdk_version: "module_current",
Keun young Park8791c7e2021-10-05 16:11:07 -070024 min_sdk_version: "31",
25 apex_available: [
26 "//apex_available:platform",
27 "com.android.car.framework",
28 ],
Hayden Gomes49c845f2020-10-27 13:01:33 -070029 },
30 },
Jiyong Park703e9792022-03-22 14:18:48 +090031 versions_with_info: [
32 {
33 version: "1",
34 imports: [
35 "android.hardware.audio.common-V1",
Lorena Torres-Huerta8296aa82022-08-29 21:48:01 +000036 "android.media.audio.common.types-V2",
Jiyong Park703e9792022-03-22 14:18:48 +090037 ],
38 },
39 {
40 version: "2",
41 imports: [
42 "android.hardware.audio.common-V1",
Lorena Torres-Huerta8296aa82022-08-29 21:48:01 +000043 "android.media.audio.common.types-V2",
Jiyong Park703e9792022-03-22 14:18:48 +090044 ],
45 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000046 {
47 version: "3",
48 imports: [
49 "android.hardware.audio.common-V1",
50 "android.media.audio.common.types-V2",
51 ],
52 },
Jiyong Park703e9792022-03-22 14:18:48 +090053
Francois Gaffie5d7af1e2022-02-02 11:12:08 +010054 ],
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000055 frozen: true,
Jiyong Park703e9792022-03-22 14:18:48 +090056
Hayden Gomes49c845f2020-10-27 13:01:33 -070057}