mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-04-22 10:35:30 +01:00
This patch adds the JetNews jank-testing workload. This is accomplished through the uiauto helper library and the jank test classes. This workload requires a JetNews app APK to be available. We plan to make it available through the workload-automation-assets repo. At the end of the run, users should end up with a json file containing all the frame/jank metrics. There are 3 parameters for this workload: - tests: Specifies which of the 3 available tests to run (default is to run all of them) - flingspeed: The speed of the fling interactions. - repeat: How many times each of the selected tests is to be executed in a single measuring session.
27 lines
578 B
Groovy
27 lines
578 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.5.0'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.buildDir
|
|
}
|