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

Unified Diff: scripts/slave/recipes/webrtc/chromium.py

Issue 541343004: WebRTC: Pass WebRTC revision to perf dashboard for FYI bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased Created 6 years, 2 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
Index: scripts/slave/recipes/webrtc/chromium.py
diff --git a/scripts/slave/recipes/webrtc/chromium.py b/scripts/slave/recipes/webrtc/chromium.py
index 7b0008235ba92a4515e8923b6e21cc87da2b681c..bf1cd18d9d779296d26dca7dfd33d68494005930 100644
--- a/scripts/slave/recipes/webrtc/chromium.py
+++ b/scripts/slave/recipes/webrtc/chromium.py
@@ -56,7 +56,9 @@ def GenSteps(api):
# Bot Update re-uses the gclient configs.
step_result = api.bot_update.ensure_checkout(force=True)
- got_revision = step_result.presentation.properties['got_revision']
+ rev_props = step_result.presentation.properties
+ got_webrtc_revision = rev_props['got_webrtc_revision']
+ got_chromium_revision = rev_props.get('got_chromium_revision')
if not bot_config.get('disable_runhooks'):
api.chromium.runhooks()
@@ -92,7 +94,8 @@ def GenSteps(api):
api.chromium_android.common_tests_final_steps()
else:
test_runner = lambda: api.webrtc.runtests(recipe_config.get('test_suite'),
- revision=got_revision)
+ revision=got_revision,
+ cr_revision=got_cr_revision)
api.chromium_tests.setup_chromium_tests(test_runner)

Powered by Google App Engine
This is Rietveld 408576698