blob: 1cabd630758b03681790168ae6db1aa7bf08b7c9 [file] [log] [blame]
Chidera Olibied46c92f2023-02-08 19:01:15 +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
15package {
16 // See: http://go/android-license-faq
17 default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20android_library {
21 name: "NetHttpTestsLibPreJarJar",
22 srcs: [":cronet_aml_javatests_sources"],
23 static_libs: [
24 "androidx.test.ext.junit",
25 "androidx.test.rules",
26 "junit",
27 ],
28 libs: [
29 "android.test.base",
30 "framework-tethering-pre-jarjar",
31 ]
32}
33
34android_test {
35 name: "NetHttpTests",
36 defaults: [
37 "CronetTestJavaDefaults",
38 "mts-target-sdk-version-current",
39 ],
Chidera Olibied46c92f2023-02-08 19:01:15 +000040 sdk_version: "test_current",
41 static_libs: ["NetHttpTestsLibPreJarJar"],
42 jarjar_rules: ":framework-tethering-jarjar-rules",
43 test_suites: [
44 "general-tests",
45 "mts-tethering",
46 ],
47}
48