 Chromium Code Reviews
 Chromium Code Reviews Issue 238953003:
  Point nacl tests to correct browser on 64-bit Windows  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
    
  
    Issue 238953003:
  Point nacl tests to correct browser on 64-bit Windows  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/tools/build| 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( |