1// Copyright (C) 2020 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 15package { 16 default_applicable_licenses: ["Android-Apache-2.0"], 17} 18 19java_library { 20 name: "bluetooth-test-util-lib", 21 defaults: ["cts_defaults"], 22 static_libs: [ 23 "PlatformProperties", 24 "androidx.test.ext.truth", 25 "bluetooth_flags_java_lib", 26 "compatibility-device-util-axt", 27 "junit", 28 ], 29 srcs: [ 30 "src/**/*.java", 31 "src/BlockingBluetoothAdapter.kt", 32 "src/Permissions.kt", 33 ], 34 sdk_version: "test_current", 35 visibility: [ 36 "//cts/tests/tests/bluetooth", 37 "//cts/tests/tests/car", 38 "//packages/modules/Bluetooth/framework/tests/bumble", 39 40 // TODO: b/339938196 -- remove export for other modules and test 41 "//cts/hostsidetests/statsdatom/apps/statsdapp", 42 "//cts/tests/tests/appop", 43 "//packages/modules/Connectivity/nearby/tests/cts/fastpair", 44 "//packages/modules/Permission/tests/cts/permission", 45 "//packages/modules/Permission/tests/cts/permissionui", 46 "//packages/modules/Uwb/ranging/tests/cts/tests", 47 "//test/cts-root/tests/bluetooth", 48 ], 49} 50