| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 slaves = [ | 5 slaves = [ |
| 6 { | 6 { |
| 7 'master': 'ChromiumGPUFYI', | 7 'master': 'ChromiumGPUFYI', |
| 8 'hostname': 'vm80-m1', | 8 'hostname': 'vm80-m1', |
| 9 'builder': 'GPU Win Builder', | 9 'builder': 'GPU Win Builder', |
| 10 'os': 'win', | 10 'os': 'win', |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 'recipe': 'chromium', | 363 'recipe': 'chromium', |
| 364 'build_config': 'Debug', | 364 'build_config': 'Debug', |
| 365 # This bot uses recipe-side triggers. | 365 # This bot uses recipe-side triggers. |
| 366 'triggered_by': 'none', | 366 'triggered_by': 'none', |
| 367 # Nearly all bots on these waterfalls are auto-rebooted between | 367 # Nearly all bots on these waterfalls are auto-rebooted between |
| 368 # runs for stability. | 368 # runs for stability. |
| 369 }, | 369 }, |
| 370 { | 370 { |
| 371 'master': 'ChromiumGPUFYI', | 371 'master': 'ChromiumGPUFYI', |
| 372 'hostname': 'build52-b1', | 372 'hostname': 'build52-b1', |
| 373 'builder': 'Mac Retina Release (AMD)', | 373 'builder': 'Mac 10.11 Retina Release (AMD)', |
| 374 'os': 'mac', | 374 'os': 'mac', |
| 375 'version': '10.11', | 375 'version': '10.11', |
| 376 'bits': '64', | 376 'bits': '64', |
| 377 'recipe': 'chromium', | 377 'recipe': 'chromium', |
| 378 'build_config': 'Release', | 378 'build_config': 'Release', |
| 379 # This bot uses recipe-side triggers. | 379 # This bot uses recipe-side triggers. |
| 380 'triggered_by': 'none', | 380 'triggered_by': 'none', |
| 381 # Nearly all bots on these waterfalls are auto-rebooted between | 381 # Nearly all bots on these waterfalls are auto-rebooted between |
| 382 # runs for stability. | 382 # runs for stability. |
| 383 }, | 383 }, |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 'build_config': 'Release', | 586 'build_config': 'Release', |
| 587 # Nearly all bots on these waterfalls are auto-rebooted between | 587 # Nearly all bots on these waterfalls are auto-rebooted between |
| 588 # runs for stability. | 588 # runs for stability. |
| 589 }, | 589 }, |
| 590 ] | 590 ] |
| 591 | 591 |
| 592 for slave in slaves: | 592 for slave in slaves: |
| 593 slave.update({ | 593 slave.update({ |
| 594 '$recipe_engine': {'mode_flags': {'use_subprocess42': True}} | 594 '$recipe_engine': {'mode_flags': {'use_subprocess42': True}} |
| 595 }) | 595 }) |
| OLD | NEW |