1// Copyright (C) 2023 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_team: "trendy_team_aaos_framework", 17 default_applicable_licenses: ["Android-Apache-2.0"], 18} 19 20python_test_host { 21 name: "BTButtonEnableDisableTest", 22 main: "bluetooth_button_enable_disable_test.py", 23 srcs: ["bluetooth_button_enable_disable_test.py"], 24 libs: [ 25 "mobly", 26 "utilities", 27 "bluetooth_test", 28 ], 29 test_suites: [ 30 "catbox", 31 ], 32 test_options: { 33 unit_test: false, 34 }, 35 data: [ 36 // Package the snippet with the mobly test 37 ":AutomotiveSnippet", 38 ":PhoneSnippet", 39 ], 40 version: { 41 py3: { 42 embedded_launcher: true, 43 }, 44 }, 45} 46 47python_test_host { 48 name: "BTDisableEnablePhoneHFPBluetoothProfile", 49 main: "disable_enable_phone_hfp_bluetooth_profile_test.py", 50 srcs: ["disable_enable_phone_hfp_bluetooth_profile_test.py"], 51 libs: [ 52 "mobly", 53 "utilities", 54 "bluetooth_test" 55 ], 56 test_suites: [ 57 "catbox", 58 ], 59 test_options: { 60 unit_test: false, 61 }, 62 data: [ 63 // Package the snippet with the mobly test 64 ":AutomotiveSnippet", 65 ":PhoneSnippet", 66 ], 67 version: { 68 py3: { 69 embedded_launcher: true, 70 }, 71 }, 72} 73 74python_test_host { 75 name: "BluetoothPaletteVerificationTest", 76 main: "verify_bluetooth_palette_buttons_test.py", 77 srcs: ["verify_bluetooth_palette_buttons_test.py"], 78 libs: [ 79 "mobly", 80 "utilities", 81 "bluetooth_test", 82 ], 83 test_suites: [ 84 "catbox", 85 ], 86 test_options: { 87 unit_test: false, 88 }, 89 data: [ 90 // Package the snippet with the mobly test 91 ":AutomotiveSnippet", 92 ":PhoneSnippet", 93 ], 94 version: { 95 py3: { 96 embedded_launcher: true, 97 }, 98 }, 99} 100 101python_test_host { 102 name: "BTEnableDisableBluetoothAudioViaMusicButton", 103 main: "enable-disable_bluetooth_audio_via_music_button.py", 104 srcs: ["enable-disable_bluetooth_audio_via_music_button.py"], 105 libs: [ 106 "mobly", 107 "utilities", 108 "bluetooth_test" 109 ], 110 test_suites: [ 111 "catbox", 112 ], 113 test_options: { 114 unit_test: false, 115 }, 116 data: [ 117 // Package the snippet with the mobly test 118 ":AutomotiveSnippet", 119 ":PhoneSnippet", 120 ], 121 version: { 122 py3: { 123 embedded_launcher: true, 124 }, 125 }, 126} 127