blob: 86c62ef299e4c340c622c70c0c70c6ab7773f620 [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",
Krzysztof KosiƄskice1b2a12023-10-06 20:16:49 +000028 "truth",
felkachang593d07b2018-10-16 20:46:26 +080029 ],
30
31 certificate: "platform",
32
33 instrumentation_for: "ExternalStorageProvider",
34}