blob: 56f3ddb80cb7719bb27342191706f903a79884e5 [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 Olibiea0fdf1e2022-12-12 23:34:54 +000026 srcs: ["src/**/*.java"],
Motomu Utsumiceb2a752022-10-04 18:38:04 +090027 static_libs: [
28 "androidx.test.rules",
29 "androidx.core_core",
Chidera Olibie4fad0c32022-11-23 18:53:54 +000030 "ctstestrunner-axt",
Motomu Utsumiceb2a752022-10-04 18:38:04 +090031 "junit",
32 ],
33 libs: [
34 "android.test.runner",
35 "android.test.base",
36 "android.test.mock",
37 "androidx.annotation_annotation",
Motomu Utsumi6dca85d2022-10-11 18:32:15 +090038 "framework-cronet",
Motomu Utsumiceb2a752022-10-04 18:38:04 +090039 ],
Motomu Utsumiceb2a752022-10-04 18:38:04 +090040
Chidera Olibie4fad0c32022-11-23 18:53:54 +000041 // Tag this as a cts test artifact
42 test_suites: [
43 "cts",
44 "general-tests",
45 "mts-tethering"
Motomu Utsumiceb2a752022-10-04 18:38:04 +090046 ],
47}