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

Unified Diff: scripts/slave/recipes/chromium_trybot.py

Issue 238953003: Point nacl tests to correct browser on 64-bit Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 8 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/chromium_trybot.expected/full_tryserver_chromium_win_chromium_x64_dbg.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/chromium_trybot.py
diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py
index d6ae89f5bd83847c3dc2d849ffd2db50cf911ade..d491c603cfe4b5649f244d8928a1bc52d13037b5 100644
--- a/scripts/slave/recipes/chromium_trybot.py
+++ b/scripts/slave/recipes/chromium_trybot.py
@@ -358,8 +358,11 @@ def GenSteps(api):
return ['chrome']
def run(self, suffix):
+ mode = api.chromium.c.BUILD_CONFIG
Michael Achenbach 2014/04/15 11:09:40 Please try using api.chromium.c.build_config_fs in
Paweł Hajdan Jr. 2014/04/15 11:33:50 Good catch, done.
+ if api.platform.is_win and api.chromium.c.TARGET_BITS == 64:
+ mode += '_x64'
args = [
- '--mode', api.chromium.c.BUILD_CONFIG,
+ '--mode', mode,
'--json_build_results_output_file', api.json.output(),
]
return api.python(
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_win_chromium_x64_dbg.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698