blob: 439665b67ab78c01865d6454cac8b2c2e58a18b6 [file] [log] [blame]
Remi NGUYEN VAN4a2659d2019-04-03 17:21:41 +09001//
2// Copyright (C) 2019 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17// Tests in this folder are included both in unit tests and CTS.
18// They must be fast and stable, and exercise public or test APIs.
Bob Badour9d156242021-02-12 17:07:05 -080019package {
20 // See: http://go/android-license-faq
21 // A large-scale-change added 'default_applicable_licenses' to import
22 // all of the 'license_kinds' from "frameworks_base_license"
23 // to get the below license kinds:
24 // SPDX-license-identifier-Apache-2.0
25 default_applicable_licenses: ["frameworks_base_license"],
26}
27
Remi NGUYEN VAN4a2659d2019-04-03 17:21:41 +090028java_library {
29 name: "FrameworksNetCommonTests",
Remi NGUYEN VANdb6feea2021-03-16 01:31:07 +000030 defaults: ["framework-connectivity-test-defaults"],
31 srcs: [
32 "java/**/*.java",
33 "java/**/*.kt",
34 ],
Remi NGUYEN VAN4a2659d2019-04-03 17:21:41 +090035 static_libs: [
Remi NGUYEN VAN1d88c2e2020-03-09 11:52:33 +090036 "androidx.core_core",
Remi NGUYEN VAN4a2659d2019-04-03 17:21:41 +090037 "androidx.test.rules",
Remi NGUYEN VAN4a2659d2019-04-03 17:21:41 +090038 "junit",
paulhu19ed8072019-04-18 15:24:48 +080039 "mockito-target-minus-junit4",
Roshan Piusdd76fab2021-01-13 15:17:18 +000040 "modules-utils-build",
Chalard Jean64802872019-05-30 17:11:14 +090041 "net-tests-utils",
Chalard Jeanbadc37d2020-10-05 14:22:01 +090042 "net-utils-framework-common",
paulhu013244c2019-05-03 22:28:22 +080043 "platform-test-annotations",
Remi NGUYEN VAN4a2659d2019-04-03 17:21:41 +090044 ],
45 libs: [
46 "android.test.base.stubs",
47 ],
Chalard Jean64802872019-05-30 17:11:14 +090048}