1package { 2 // See: http://go/android-license-faq 3 default_applicable_licenses: ["Android-Apache-2.0"], 4} 5 6android_test { 7 name: "ContactsProviderTests", 8 static_libs: [ 9 "ContactsProviderTestUtils", 10 "androidx.test.rules", 11 "mockito-target-minus-junit4", 12 ], 13 libs: [ 14 "android.test.runner", 15 "android.test.base", 16 "android.test.mock", 17 ], 18 19 // Only compile source java files in this apk. 20 srcs: ["src/**/*.java"], 21 platform_apis: true, 22 test_suites: ["device-tests"], 23 instrumentation_for: "ContactsProvider", 24 certificate: "shared", 25 optimize: { 26 enabled: false, 27 }, 28} 29