1package {
2    default_team: "trendy_team_android_settings_app",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "packages_apps_Settings_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["packages_apps_Settings_license"],
9}
10
11android_test {
12    name: "SettingsPerfTests",
13
14    certificate: "platform",
15
16    libs: [
17        "android.test.runner.stubs.system",
18    ],
19
20    static_libs: [
21        "androidx.test.rules",
22        "androidx.test.uiautomator_uiautomator",
23    ],
24
25    // Include all test java files.
26    srcs: ["src/**/*.java"],
27
28    platform_apis: true,
29    test_suites: ["device-tests"],
30
31    instrumentation_for: "Settings",
32}
33