Chromium Code Reviews| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 275 'test_generators': [ | 275 'test_generators': [ |
| 276 steps.generate_gtest, | 276 steps.generate_gtest, |
| 277 steps.generate_script, | 277 steps.generate_script, |
| 278 steps.generate_isolated_script, | 278 steps.generate_isolated_script, |
| 279 ], | 279 ], |
| 280 'enable_swarming': True, | 280 'enable_swarming': True, |
| 281 'testing': { | 281 'testing': { |
| 282 'platform': 'win', | 282 'platform': 'win', |
| 283 }, | 283 }, |
| 284 }, | 284 }, |
| 285 'WinClang': { | |
|
Dirk Pranke
2016/04/15 18:26:27
If this is a debug x64 bot, it seems like it would
Nico
2016/04/15 18:28:03
Hm, the reasoning behind the current name is that
| |
| 286 'chromium_config': 'chromium_win_clang', | |
| 287 'chromium_apply_config': ['mb'], | |
| 288 'gclient_config': 'chromium', | |
| 289 'chromium_config_kwargs': { | |
| 290 'BUILD_CONFIG': 'Debug', | |
| 291 'TARGET_PLATFORM': 'win', | |
| 292 'TARGET_BITS': 64, | |
| 293 }, | |
| 294 'compile_targets': [ | |
| 295 'all', | |
| 296 ], | |
| 297 # Recipes builds Debug builds with component=shared_library by default. | |
| 298 'bot_type': 'builder', | |
| 299 'testing': { | |
| 300 'platform': 'win', | |
| 301 }, | |
| 302 'use_isolate': True, | |
| 303 'enable_swarming': True, | |
| 304 # Workaround so that recipes doesn't add random build targets to our | |
| 305 # compile line. We want to build everything. | |
| 306 'add_tests_as_compile_targets': False, | |
| 307 }, | |
| 285 }, | 308 }, |
| 286 } | 309 } |
| OLD | NEW |