blob: 0e76488d96421b71bebd4b0e70c3728678b94573 [file] [log] [blame]
Bob Badoure539dba2021-02-12 17:07:05 -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 "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
Patrick Baumann88c1e2a2020-01-30 09:53:01 -080010android_test {
11 name: "PackageManagerPerfTests",
12
13 srcs: ["src/**/*.java"],
14
15 static_libs: [
16 "platform-compat-test-rules",
17 "androidx.appcompat_appcompat",
18 "androidx.test.rules",
19 "androidx.test.ext.junit",
20 "androidx.annotation_annotation",
21 "apct-perftests-utils",
Patrick Baumannd73f1e22020-12-04 11:54:36 -080022 "collector-device-lib-platform",
Patrick Baumann88c1e2a2020-01-30 09:53:01 -080023 ],
24
25 libs: ["android.test.base"],
26
27 platform_apis: true,
28
29 test_suites: ["device-tests"],
30
Patrick Baumannd73f1e22020-12-04 11:54:36 -080031 data: [":perfetto_artifacts"],
32
33 certificate: "platform",
34
Patrick Baumann88c1e2a2020-01-30 09:53:01 -080035}