blob: c9105f7454e44726186cd09fa7b2d95ac0c4727f [file] [log] [blame]
David Sue7cc3ae2020-12-03 14:28:24 -08001// 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
Bob Badour8a6a2bc2021-02-12 17:07:05 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "frameworks_base_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["frameworks_base_license"],
22}
23
David Sue7cc3ae2020-12-03 14:28:24 -080024android_test {
25 name: "FrameworksWifiNonUpdatableApiTests",
26
27 defaults: ["framework-wifi-test-defaults"],
28
29 srcs: ["src/**/*.java"],
30
31 jacoco: {
32 include_filter: ["android.net.wifi.*"],
33 // TODO(b/147521214) need to exclude test classes
34 exclude_filter: [],
35 },
36
37 static_libs: [
38 "androidx.test.rules",
39 "frameworks-base-testutils",
40 "guava",
41 "mockito-target-minus-junit4",
42 "truth-prebuilt",
43 ],
44
45 libs: [
46 "android.test.runner",
47 "android.test.base",
48 ],
49
50 test_suites: [
51 "general-tests",
52 ],
53}