Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Unified Diff: scripts/slave/recipes/android/builder.py

Issue 1718093003: [Android] Limit the targets built on the android chromium.perf builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipes/android/builder.expected/full_chromium_perf_Android_Builder.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/android/builder.py
diff --git a/scripts/slave/recipes/android/builder.py b/scripts/slave/recipes/android/builder.py
index 992c8a2711c7e258f940654915d1a475aa8ca0ae..979949d60581201b30e83ac897d85d1b0be13de7 100644
--- a/scripts/slave/recipes/android/builder.py
+++ b/scripts/slave/recipes/android/builder.py
@@ -70,6 +70,12 @@ BUILDERS = freeze({
% api.properties['revision']),
},
'run_mb': True,
+ 'targets': [
+ 'android_tools',
+ 'cc_perftests',
+ 'chrome_public_apk',
+ 'gpu_perftests',
+ ],
},
'Android arm64 Builder': {
'recipe_config': 'arm64_builder_rel_mb',
@@ -84,6 +90,12 @@ BUILDERS = freeze({
% api.properties['revision']),
},
'run_mb': True,
+ 'targets': [
+ 'android_tools',
+ 'cc_perftests',
+ 'chrome_public_apk',
+ 'gpu_perftests',
+ ],
}
},
'tryserver.chromium.perf': {
@@ -183,7 +195,7 @@ def _RunStepsInternal(api, mastername, buildername, revision):
if bot_config.get('check_licenses'):
with bot_config['check_licenses']():
droid.check_webview_licenses()
- api.chromium.compile()
+ api.chromium.compile(bot_config.get('targets'))
upload_config = bot_config.get('upload')
if upload_config:
« no previous file with comments | « no previous file | scripts/slave/recipes/android/builder.expected/full_chromium_perf_Android_Builder.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698