blob: 1028faecf2154950623069d6e4926d1f43393f03 [file] [log] [blame]
Alice Kuoa4dbaff2021-10-18 03:35:59 +08001// Copyright (C) 2021 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Bob Badour8df6fa12022-01-13 11:51:58 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "hardware_interfaces_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["hardware_interfaces_license"],
22}
23
Alice Kuoa4dbaff2021-10-18 03:35:59 +080024aidl_interface {
25 name: "android.hardware.bluetooth.audio",
26 vendor_available: true,
Yung Ti Sufefceb12023-08-22 09:29:06 +000027 host_supported: true,
Alice Kuoa4dbaff2021-10-18 03:35:59 +080028 srcs: ["android/hardware/bluetooth/audio/*.aidl"],
29 stability: "vintf",
30 imports: [
31 "android.hardware.common-V2",
32 "android.hardware.common.fmq-V1",
Ram Mohanf6497dd2023-06-29 08:36:31 +053033 "android.hardware.audio.common-V2",
Alice Kuoa4dbaff2021-10-18 03:35:59 +080034 ],
35 backend: {
36 cpp: {
37 enabled: false,
38 },
39 java: {
40 sdk_version: "module_current",
41 enabled: false,
42 },
43 ndk: {
Josh Wu6ab53e72021-12-29 23:53:33 -080044 apex_available: [
45 "//apex_available:platform",
William Escande2591c3d2022-08-22 11:27:58 -070046 "com.android.btservices",
Josh Wu6ab53e72021-12-29 23:53:33 -080047 ],
Roopa Sattiraju7455efc2022-02-03 14:15:22 -080048 min_sdk_version: "31",
Alice Kuoa4dbaff2021-10-18 03:35:59 +080049 },
50 },
Jiyong Park703e9792022-03-22 14:18:48 +090051 versions_with_info: [
52 {
53 version: "1",
54 imports: [
55 "android.hardware.common-V2",
56 "android.hardware.common.fmq-V1",
57 "android.hardware.audio.common-V1",
58 ],
59 },
Omer Osmana2587da2022-05-01 03:54:11 +000060 {
61 version: "2",
62 imports: [
63 "android.hardware.common-V2",
64 "android.hardware.common.fmq-V1",
65 "android.hardware.audio.common-V1",
66 ],
67 },
Devin Mooredfcd3bd2023-07-31 23:20:30 +000068 {
69 version: "3",
70 imports: [
71 "android.hardware.common-V2",
72 "android.hardware.common.fmq-V1",
Ram Mohanf6497dd2023-06-29 08:36:31 +053073 "android.hardware.audio.common-V2",
Devin Mooredfcd3bd2023-07-31 23:20:30 +000074 ],
75 },
Omer Osmana2587da2022-05-01 03:54:11 +000076
Jiyong Park703e9792022-03-22 14:18:48 +090077 ],
Devin Mooredfcd3bd2023-07-31 23:20:30 +000078 frozen: true,
Jiyong Park703e9792022-03-22 14:18:48 +090079
Alice Kuoa4dbaff2021-10-18 03:35:59 +080080}