You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_base_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_base_license"],
|
|
}
|
|
|
|
android_test {
|
|
name: "JankBench",
|
|
manifest: "app/src/main/AndroidManifest.xml",
|
|
sdk_version: "current",
|
|
// omit gradle 'build' dir
|
|
srcs: ["app/src/main/java/**/*.java"],
|
|
// use appcompat/support lib from the tree, so improvements/
|
|
// regressions are reflected in test data
|
|
resource_dirs: ["app/src/main/res"],
|
|
static_libs: [
|
|
"com.google.android.material_material",
|
|
"androidx.legacy_legacy-support-v4",
|
|
"androidx.appcompat_appcompat",
|
|
"androidx.cardview_cardview",
|
|
"androidx.recyclerview_recyclerview",
|
|
"androidx.leanback_leanback",
|
|
"apache-commons-math",
|
|
"junit",
|
|
],
|
|
test_suites: ["device-tests"],
|
|
}
|