1package {
2    default_team: "trendy_team_input_framework",
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 "frameworks_base_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["frameworks_base_license"],
9}
10
11android_test {
12    name: "SettingsProviderPerfTests",
13
14    srcs: [
15        "src/**/*.java",
16        "src/**/*.kt",
17    ],
18
19    static_libs: [
20        "platform-compat-test-rules",
21        "androidx.appcompat_appcompat",
22        "androidx.test.rules",
23        "androidx.test.ext.junit",
24        "androidx.annotation_annotation",
25        "apct-perftests-utils",
26        "collector-device-lib-platform",
27        "cts-install-lib-java",
28        "services.core",
29    ],
30
31    libs: ["android.test.base"],
32
33    platform_apis: true,
34
35    test_suites: ["device-tests"],
36
37    data: [":perfetto_artifacts"],
38
39    certificate: "platform",
40}
41