1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "frameworks_base_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["frameworks_base_license"], 8} 9 10android_test { 11 name: "ExternalStorageProviderTests", 12 13 manifest: "AndroidManifest.xml", 14 15 test_suites: [ 16 "general-tests", 17 ], 18 19 srcs: [ 20 "src/**/*.java", 21 ], 22 23 libs: [ 24 "android.test.base.stubs.system", 25 "android.test.mock.stubs.system", 26 "android.test.runner.stubs.system", 27 ], 28 29 static_libs: [ 30 "androidx.test.rules", 31 "mockito-target", 32 "truth", 33 ], 34 35 certificate: "platform", 36 37 instrumentation_for: "ExternalStorageProvider", 38} 39