| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 }, |
| 384 { | 384 { |
| 385 'master': 'ChromiumGPUFYI', | 385 'master': 'ChromiumGPUFYI', |
| 386 'hostname': 'vm49-m1', |
| 387 'builder': 'Mac GPU ASAN Release', |
| 388 'os': 'mac', |
| 389 'version': '10.10', |
| 390 'bits': '64', |
| 391 'recipe': 'chromium', |
| 392 'build_config': 'Release', |
| 393 # This bot uses recipe-side triggers. |
| 394 'triggered_by': 'none', |
| 395 # Nearly all bots on these waterfalls are auto-rebooted between |
| 396 # runs for stability. |
| 397 }, |
| 398 { |
| 399 'master': 'ChromiumGPUFYI', |
| 386 'hostname': 'slave60-c1', | 400 'hostname': 'slave60-c1', |
| 387 'builder': 'GPU Linux Builder', | 401 'builder': 'GPU Linux Builder', |
| 388 'os': 'linux', | 402 'os': 'linux', |
| 389 'version': 'precise', | 403 'version': 'precise', |
| 390 'bits': '64', | 404 'bits': '64', |
| 391 'recipe': 'chromium', | 405 'recipe': 'chromium', |
| 392 'build_config': 'Release', | 406 'build_config': 'Release', |
| 393 # Nearly all bots on these waterfalls are auto-rebooted between | 407 # Nearly all bots on these waterfalls are auto-rebooted between |
| 394 # runs for stability. | 408 # runs for stability. |
| 395 }, | 409 }, |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 'build_config': 'Release', | 600 'build_config': 'Release', |
| 587 # Nearly all bots on these waterfalls are auto-rebooted between | 601 # Nearly all bots on these waterfalls are auto-rebooted between |
| 588 # runs for stability. | 602 # runs for stability. |
| 589 }, | 603 }, |
| 590 ] | 604 ] |
| 591 | 605 |
| 592 for slave in slaves: | 606 for slave in slaves: |
| 593 slave.update({ | 607 slave.update({ |
| 594 '$recipe_engine': {'mode_flags': {'use_subprocess42': True}} | 608 '$recipe_engine': {'mode_flags': {'use_subprocess42': True}} |
| 595 }) | 609 }) |
| OLD | NEW |