blob: fc70219d2aeb34b91dd9616af734f49a57767f4f [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",
Felka Chang4f301042021-07-27 01:29:43 +080023 "cts-install-lib-java",
Patrick Baumann88c1e2a2020-01-30 09:53:01 -080024 ],
25
26 libs: ["android.test.base"],
27
28 platform_apis: true,
29
30 test_suites: ["device-tests"],
31
Patrick Baumannd73f1e22020-12-04 11:54:36 -080032 data: [":perfetto_artifacts"],
33
34 certificate: "platform",
35
Patrick Baumann88c1e2a2020-01-30 09:53:01 -080036}