blob: 22b2f46e5ec18d2fdd55d3e9566ed08cbe531f9a [file] [log] [blame]
Amit Mahajan97473302019-11-21 14:34:05 -08001//
2// Copyright (C) 2009 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
Bob Badour1fcc3d72021-02-12 18:21:19 -080017package {
18 // See: http://go/android-license-faq
Bob Badourb963ff52022-01-27 19:26:46 -080019 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour1fcc3d72021-02-12 18:21:19 -080020}
21
Amit Mahajan97473302019-11-21 14:34:05 -080022android_test {
23 name: "TeleServiceTests",
24
25 srcs: ["src/**/*.java"],
26
27 libs: [
Jihoon Kangf078bf22024-08-30 00:30:34 +000028 "android.test.mock.stubs.system",
29 "android.test.runner.stubs.system",
Amit Mahajan97473302019-11-21 14:34:05 -080030 "telephony-common",
Jihoon Kangf078bf22024-08-30 00:30:34 +000031 "android.test.base.stubs.system",
Amit Mahajan97473302019-11-21 14:34:05 -080032 "ims-common",
Jihoon Kangf078bf22024-08-30 00:30:34 +000033 "android.test.mock.stubs.system",
Amit Mahajan97473302019-11-21 14:34:05 -080034 ],
35 platform_apis: true,
36 certificate: "platform",
37
Amit Mahajan67caf6d2019-12-13 08:25:44 +000038 instrumentation_for: "TeleService",
Amit Mahajan97473302019-11-21 14:34:05 -080039
40 static_libs: [
mattgilbride5b6b7182023-04-03 18:56:44 +000041 "frameworks-base-testutils",
Marcus Hagerottb3769272020-10-30 14:27:33 -070042 "androidx.test.core",
43 "androidx.test.espresso.core",
44 "androidx.test.ext.junit",
Amit Mahajan97473302019-11-21 14:34:05 -080045 "androidx.test.rules",
46 "mockito-target-minus-junit4",
Marcus Hagerottb3769272020-10-30 14:27:33 -070047 "telephony-common-testing",
48 "testng",
Krzysztof KosiƄskidea7ce32023-10-07 00:48:15 +000049 "truth",
Rambo Wang1bf0afc2021-06-25 11:53:44 -070050 "testables",
51 "platform-compat-test-rules",
Aishwarya Mallamapti743887f2023-08-03 23:04:24 +000052 "flag-junit",
Thomas Nguyen1f049df2023-11-23 10:20:54 -080053 "satellite-s2storage-rw",
54 "satellite-s2storage-testutils",
55 "s2-geometry-library-java",
Amit Mahajan97473302019-11-21 14:34:05 -080056 ],
57
Hall Liuea70ea92019-11-26 13:35:51 -080058 test_suites: [
59 "device-tests",
60 "mts",
61 ],
Amit Mahajan97473302019-11-21 14:34:05 -080062
63}