• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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
10android_test {
11    name: "SettingsPerfTests",
12
13    certificate: "platform",
14
15    libs: [
16        "android.test.runner",
17    ],
18
19    static_libs: [
20        "androidx.test.rules",
21        "ub-uiautomator",
22    ],
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}
32