blob: 0b05e04ffac518db7b46c7bc40b15b7d2fd6044a [file] [log] [blame]
Bob Badour6695ff82021-02-12 17:08:01 -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 "packages_apps_Settings_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["packages_apps_Settings_license"],
8}
9
Colin Cross946a0fd2019-05-07 11:22:05 -070010android_test {
11 name: "AnomalyTester",
12
13 certificate: "platform",
14
15 libs: ["android.test.runner"],
16
17 static_libs: [
18 "androidx.test.rules",
19 "mockito-target",
Fangqiu Su38cf6852023-04-24 17:33:03 +000020 "androidx.test.uiautomator_uiautomator",
Krzysztof KosiƄskic81fbce2023-10-11 19:39:33 +000021 "truth",
Colin Cross946a0fd2019-05-07 11:22:05 -070022 ],
23
24 srcs: ["**/*.java"],
25
26 optimize: {
27 enabled: false,
28 },
29
30 platform_apis: true,
31
32 instrumentation_for: "Settings",
33}