blob: 1ed08816fa1291ab3bfeced9966468765dedf3d7 [file] [log] [blame]
Chidera Olibiee3e2e7f2023-02-08 19:12:10 +00001// 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//
15
16// Tests in this folder are included both in unit tests and CTS.
17// They must be fast and stable, and exercise public or test APIs.
18
19package {
20 // See: http://go/android-license-faq
21 default_applicable_licenses: ["Android-Apache-2.0"],
22}
23
24// TODO: Consider merging with ConnectivityCoverageTests which is a collection of all
25// Connectivity tests being used for coverage. This will depend on how far we decide to
26// go with merging NetHttp and Tethering targets.
27android_test {
28 name: "NetHttpCoverageTests",
29 defaults: ["CronetTestJavaDefaults"],
30 sdk_version: "test_current",
31 test_suites: ["general-tests", "mts-tethering"],
32 static_libs: [
33 "modules-utils-native-coverage-listener",
34 "CtsNetHttpTestsLib",
35 "NetHttpTestsLibPreJarJar",
36 ],
37 jarjar_rules: ":framework-tethering-jarjar-rules",
38 compile_multilib: "both",
39}