blob: 7d3b75bb021cedf6a5de5d3b0de2ae91f01eef6c [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
Raff Tsai55422c72020-02-05 18:32:33 +080010android_test {
11 name: "SettingsPerfTests",
12
13 certificate: "platform",
14
15 libs: [
16 "android.test.runner",
17 ],
18
19 static_libs: [
20 "androidx.test.rules",
Fangqiu Su61c93dc2023-04-24 17:49:02 +000021 "androidx.test.uiautomator_uiautomator",
Raff Tsai55422c72020-02-05 18:32:33 +080022 ],
23
24 // Include all test java files.
25 srcs: ["src/**/*.java"],
26
27 platform_apis: true,
28 test_suites: ["device-tests"],
29
30 instrumentation_for: "Settings",
31}