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_fwk_wifi_hal", 17 default_applicable_licenses: ["Android-Apache-2.0"], 18} 19 20python_test_host { 21 name: "WifiAwareAttachTestCases", 22 main: "wifi_aware_attached_test.py", 23 srcs: ["wifi_aware_attached_test.py"], 24 device_common_data: [":wifi_aware_snippet_new"], 25 libs: [ 26 "aware_lib_utils", 27 "mobly", 28 "wifi_aware_constants", 29 ], 30 test_suites: [ 31 "general-tests", 32 ], 33 test_options: { 34 unit_test: false, 35 tags: ["mobly"], 36 }, 37} 38 39python_test_host { 40 name: "WifiAwareDiscoveryCases", 41 main: "wifi_aware_discovery_test.py", 42 srcs: ["wifi_aware_discovery_test.py"], 43 device_common_data: [":wifi_aware_snippet_new"], 44 libs: [ 45 "aware_lib_utils", 46 "mobly", 47 "wifi_aware_constants", 48 ], 49 test_suites: [ 50 "general-tests", 51 ], 52 test_options: { 53 unit_test: false, 54 tags: ["mobly"], 55 }, 56} 57 58python_test_host { 59 name: "WifiAwareMessageCases", 60 main: "wifi_aware_message_test.py", 61 srcs: ["wifi_aware_message_test.py"], 62 device_common_data: [":wifi_aware_snippet_new"], 63 libs: [ 64 "aware_lib_utils", 65 "mobly", 66 "wifi_aware_constants", 67 ], 68 test_suites: [ 69 "general-tests", 70 ], 71 test_options: { 72 unit_test: false, 73 tags: ["mobly"], 74 }, 75} 76 77python_test_host { 78 name: "WifiAwareMatchFilterCases", 79 main: "wifi_aware_matchfilter_test.py", 80 srcs: ["wifi_aware_matchfilter_test.py"], 81 device_common_data: [":wifi_aware_snippet_new"], 82 libs: [ 83 "aware_lib_utils", 84 "mobly", 85 "wifi_aware_constants", 86 ], 87 test_suites: [ 88 "general-tests", 89 ], 90 test_options: { 91 unit_test: false, 92 tags: ["mobly"], 93 }, 94} 95