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