1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
aidl_library {
name: "bluetooth_constants",
srcs: [
"bluetooth/constants/AudioInputType.aidl",
"bluetooth/constants/aics/AudioInputStatus.aidl",
"bluetooth/constants/aics/GainMode.aidl",
"bluetooth/constants/aics/Mute.aidl",
],
visibility: ["//packages/modules/Bluetooth:__subpackages__"],
}
// other java component doesn't know how to depend on an aidl_library
java_library {
name: "bluetooth_constants_java",
srcs: [
"bluetooth/constants/AudioInputType.aidl",
"bluetooth/constants/aics/AudioInputStatus.aidl",
"bluetooth/constants/aics/GainMode.aidl",
"bluetooth/constants/aics/Mute.aidl",
],
apex_available: ["com.android.bt"],
min_sdk_version: "Tiramisu",
sdk_version: "module_current",
visibility: ["//packages/modules/Bluetooth:__subpackages__"],
}
|