Motomu Utsumi | ceb2a75 | 2022-10-04 18:38:04 +0900 | [diff] [blame] | 1 | // |
| 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 | package { |
| 18 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 19 | } |
| 20 | |
Chidera Olibie | 4fad0c3 | 2022-11-23 18:53:54 +0000 | [diff] [blame] | 21 | android_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 Olibie | be5cf70 | 2022-12-14 19:42:34 +0000 | [diff] [blame] | 26 | srcs: [ |
| 27 | "src/**/*.java", |
| 28 | "src/**/*.kt", |
| 29 | ], |
Motomu Utsumi | ceb2a75 | 2022-10-04 18:38:04 +0900 | [diff] [blame] | 30 | static_libs: [ |
| 31 | "androidx.test.rules", |
| 32 | "androidx.core_core", |
Chidera Olibie | 4fad0c3 | 2022-11-23 18:53:54 +0000 | [diff] [blame] | 33 | "ctstestrunner-axt", |
Chidera Olibie | be5cf70 | 2022-12-14 19:42:34 +0000 | [diff] [blame] | 34 | "ctstestserver", |
Motomu Utsumi | ceb2a75 | 2022-10-04 18:38:04 +0900 | [diff] [blame] | 35 | "junit", |
| 36 | ], |
| 37 | libs: [ |
| 38 | "android.test.runner", |
| 39 | "android.test.base", |
| 40 | "android.test.mock", |
| 41 | "androidx.annotation_annotation", |
Motomu Utsumi | 6dca85d | 2022-10-11 18:32:15 +0900 | [diff] [blame] | 42 | "framework-cronet", |
Chidera Olibie | be5cf70 | 2022-12-14 19:42:34 +0000 | [diff] [blame] | 43 | "org.apache.http.legacy", |
Motomu Utsumi | ceb2a75 | 2022-10-04 18:38:04 +0900 | [diff] [blame] | 44 | ], |
Motomu Utsumi | ceb2a75 | 2022-10-04 18:38:04 +0900 | [diff] [blame] | 45 | |
Chidera Olibie | 4fad0c3 | 2022-11-23 18:53:54 +0000 | [diff] [blame] | 46 | // Tag this as a cts test artifact |
| 47 | test_suites: [ |
| 48 | "cts", |
| 49 | "general-tests", |
| 50 | "mts-tethering" |
Motomu Utsumi | ceb2a75 | 2022-10-04 18:38:04 +0900 | [diff] [blame] | 51 | ], |
| 52 | } |