| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-win-archive', | 9 'build_gs_bucket': 'chromium-win-archive', |
| 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. | 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 | 180 |
| 181 'Win x64 Builder (dbg)': { | 181 'Win x64 Builder (dbg)': { |
| 182 'chromium_config': 'chromium', | 182 'chromium_config': 'chromium', |
| 183 'chromium_apply_config': ['ninja_confirm_noop'], | 183 'chromium_apply_config': ['ninja_confirm_noop'], |
| 184 'gclient_config': 'chromium', | 184 'gclient_config': 'chromium', |
| 185 'chromium_config_kwargs': { | 185 'chromium_config_kwargs': { |
| 186 'BUILD_CONFIG': 'Debug', | 186 'BUILD_CONFIG': 'Debug', |
| 187 'TARGET_BITS': 64, | 187 'TARGET_BITS': 64, |
| 188 }, | 188 }, |
| 189 'bot_type': 'builder', | 189 'bot_type': 'builder', |
| 190 'compile_targets': [ |
| 191 'chromium_builder_tests', |
| 192 ], |
| 190 'testing': { | 193 'testing': { |
| 191 'platform': 'win', | 194 'platform': 'win', |
| 192 }, | 195 }, |
| 193 'enable_swarming': True, | 196 'enable_swarming': True, |
| 194 'use_isolate': True, | 197 'use_isolate': True, |
| 195 }, | 198 }, |
| 196 | 199 |
| 197 'Win Builder (dbg)': { | 200 'Win Builder (dbg)': { |
| 198 'chromium_config': 'chromium', | 201 'chromium_config': 'chromium', |
| 199 'chromium_apply_config': ['ninja_confirm_noop'], | 202 'chromium_apply_config': ['ninja_confirm_noop'], |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 steps.generate_script, | 268 steps.generate_script, |
| 266 steps.generate_isolated_script, | 269 steps.generate_isolated_script, |
| 267 ], | 270 ], |
| 268 'enable_swarming': True, | 271 'enable_swarming': True, |
| 269 'testing': { | 272 'testing': { |
| 270 'platform': 'win', | 273 'platform': 'win', |
| 271 }, | 274 }, |
| 272 }, | 275 }, |
| 273 }, | 276 }, |
| 274 } | 277 } |
| OLD | NEW |