1package {
2    default_team: "trendy_team_fwk_telephony",
3    // See: http://go/android-license-faq
4    default_applicable_licenses: ["Android-Apache-2.0"],
5}
6
7android_test {
8    name: "TelephonyProviderTests",
9    static_libs: [
10        "mockito-target",
11        "compatibility-device-util-axt",
12        "androidx.test.rules",
13        "truth",
14        "androidx.test.core",
15        "androidx.test.ext.junit",
16    ],
17    libs: [
18        "android.test.runner",
19        "telephony-common",
20        "android.test.base",
21        "android.test.mock",
22    ],
23    srcs: [
24        "src/**/*.java",
25        ":telephonyprovider-shared-srcs",
26    ],
27    platform_apis: true,
28    test_suites: ["device-tests"],
29    certificate: "platform",
30    instrumentation_for: "TelephonyProvider",
31}
32