blob: 633f1861092110a2a57f64e8f074189943f0742f [file] [log] [blame]
Bob Badoure539dba2021-02-12 17:07:05 -08001package {
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
felkachang593d07b2018-10-16 20:46:26 +080010android_test {
11 name: "ExternalStorageProviderTests",
12
13 manifest: "AndroidManifest.xml",
14
15 srcs: [
16 "src/**/*.java",
17 ],
18
19 libs: [
20 "android.test.base",
21 "android.test.mock",
22 "android.test.runner",
23 ],
24
25 static_libs: [
KOUSHIK PANUGANTI2d6c5fc2018-12-18 12:37:14 -080026 "androidx.test.rules",
felkachang593d07b2018-10-16 20:46:26 +080027 "mockito-target",
28 "truth-prebuilt",
29 ],
30
31 certificate: "platform",
32
33 instrumentation_for: "ExternalStorageProvider",
34}