blob: d10c68cfa5fb8ccc32f5d299651461866eacc6b1 [file] [log] [blame]
Motomu Utsumiceb2a752022-10-04 18:38:04 +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
17package {
18 default_applicable_licenses: ["Android-Apache-2.0"],
19}
20
Chidera Olibie4fad0c32022-11-23 18:53:54 +000021android_test {
22 name: "CtsCronetTestCases",
23 compile_multilib: "both", // Include both the 32 and 64 bit versions
24 defaults: ["cts_defaults"],
25 sdk_version: "test_current",
Chidera Olibiebe5cf702022-12-14 19:42:34 +000026 srcs: [
27 "src/**/*.java",
28 "src/**/*.kt",
29 ],
Motomu Utsumiceb2a752022-10-04 18:38:04 +090030 static_libs: [
31 "androidx.test.rules",
32 "androidx.core_core",
Chidera Olibie4fad0c32022-11-23 18:53:54 +000033 "ctstestrunner-axt",
Chidera Olibiebe5cf702022-12-14 19:42:34 +000034 "ctstestserver",
Motomu Utsumiceb2a752022-10-04 18:38:04 +090035 "junit",
36 ],
37 libs: [
38 "android.test.runner",
39 "android.test.base",
40 "android.test.mock",
41 "androidx.annotation_annotation",
Motomu Utsumi6dca85d2022-10-11 18:32:15 +090042 "framework-cronet",
Chidera Olibiebe5cf702022-12-14 19:42:34 +000043 "org.apache.http.legacy",
Motomu Utsumiceb2a752022-10-04 18:38:04 +090044 ],
Motomu Utsumiceb2a752022-10-04 18:38:04 +090045
Chidera Olibie4fad0c32022-11-23 18:53:54 +000046 // Tag this as a cts test artifact
47 test_suites: [
48 "cts",
49 "general-tests",
50 "mts-tethering"
Motomu Utsumiceb2a752022-10-04 18:38:04 +090051 ],
52}