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