blob: 4ee2f4913e8b1c205147836c16f333acd9c3c449 [file] [log] [blame]
Myles Watson10d29e42022-08-03 16:59:48 -07001// This is the expected build file, but it may not be right in all cases
2
Bob Badour7cde2ee2022-11-03 07:03:39 -07003package {
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
Myles Watson10d29e42022-08-03 16:59:48 -070012aidl_interface {
13 name: "android.hardware.bluetooth",
14 vendor_available: true,
Myles Watsone4501e52022-09-30 06:20:50 -070015 host_supported: true,
Myles Watson10d29e42022-08-03 16:59:48 -070016 srcs: ["android/hardware/bluetooth/*.aidl"],
17 stability: "vintf",
18 backend: {
Henri Chataing00035202024-11-20 00:51:39 +000019 rust: {
20 enabled: true,
21 },
Myles Watson10d29e42022-08-03 16:59:48 -070022 java: {
23 sdk_version: "module_current",
24 },
25 ndk: {
26 apex_available: [
27 "//apex_available:platform",
William Escande651113e2025-01-09 14:37:59 -080028 "com.android.bt",
Myles Watson10d29e42022-08-03 16:59:48 -070029 ],
30 min_sdk_version: "33",
31 },
32 },
Alex Buynytskyyec1198d2023-04-04 19:52:27 +000033 versions_with_info: [
34 {
35 version: "1",
36 imports: [],
37 },
38 ],
39 frozen: true,
Myles Watson10d29e42022-08-03 16:59:48 -070040}