blob: 6399ffdfdf2ff7b9af722b3f1bee65fee652fd79 [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
Sasha Smundak995887e2019-05-02 21:35:45 -070010android_test {
11 name: "ShellTests",
12 srcs: ["src/**/*.java"],
13 libs: [
Jihoon Kang1e37ed32024-08-30 00:29:12 +000014 "android.test.runner.stubs.system",
15 "android.test.base.stubs.system",
16 "android.test.mock.stubs.system",
Sasha Smundak995887e2019-05-02 21:35:45 -070017 ],
18 static_libs: [
19 "androidx.test.rules",
20 "mockito-target-minus-junit4",
Yichun Li88bfacf2023-04-11 15:24:36 +000021 "androidx.test.uiautomator_uiautomator",
Sasha Smundak995887e2019-05-02 21:35:45 -070022 "junit",
23 ],
24 platform_apis: true,
25 test_suites: ["device-tests"],
26 instrumentation_for: "Shell",
27 certificate: "platform",
28}