| 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 'bits': '64', | 470 'bits': '64', |
| 471 'recipe': 'chromium', | 471 'recipe': 'chromium', |
| 472 'build_config': 'Debug', | 472 'build_config': 'Debug', |
| 473 # This bot uses recipe-side triggers. | 473 # This bot uses recipe-side triggers. |
| 474 'triggered_by': 'none', | 474 'triggered_by': 'none', |
| 475 # Nearly all bots on these waterfalls are auto-rebooted between | 475 # Nearly all bots on these waterfalls are auto-rebooted between |
| 476 # runs for stability. | 476 # runs for stability. |
| 477 }, | 477 }, |
| 478 { | 478 { |
| 479 'master': 'ChromiumGPUFYI', | 479 'master': 'ChromiumGPUFYI', |
| 480 'hostname': 'build115-b1', |
| 481 'builder': 'Linux Release (AMD R7 240)', |
| 482 'os': 'linux', |
| 483 'version': 'precise', |
| 484 'bits': '64', |
| 485 'recipe': 'chromium', |
| 486 'build_config': 'Release', |
| 487 # This bot uses recipe-side triggers. |
| 488 'triggered_by': 'none', |
| 489 # Nearly all bots on these waterfalls are auto-rebooted between |
| 490 # runs for stability. |
| 491 }, |
| 492 { |
| 493 'master': 'ChromiumGPUFYI', |
| 480 'hostname': 'build59-b1', | 494 'hostname': 'build59-b1', |
| 481 'builder': 'Android Release (Nexus 5)', | 495 'builder': 'Android Release (Nexus 5)', |
| 482 'os': 'linux', | 496 'os': 'linux', |
| 483 'version': 'precise', | 497 'version': 'precise', |
| 484 'bits': '64', | 498 'bits': '64', |
| 485 'recipe': 'chromium', | 499 'recipe': 'chromium', |
| 486 'build_config': 'Release', | 500 'build_config': 'Release', |
| 487 # Nearly all bots on these waterfalls are auto-rebooted between | 501 # Nearly all bots on these waterfalls are auto-rebooted between |
| 488 # runs for stability. | 502 # runs for stability. |
| 489 }, | 503 }, |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 'build_config': 'Release', | 572 'build_config': 'Release', |
| 559 # Nearly all bots on these waterfalls are auto-rebooted between | 573 # Nearly all bots on these waterfalls are auto-rebooted between |
| 560 # runs for stability. | 574 # runs for stability. |
| 561 }, | 575 }, |
| 562 ] | 576 ] |
| 563 | 577 |
| 564 for slave in slaves: | 578 for slave in slaves: |
| 565 slave.update({ | 579 slave.update({ |
| 566 '$recipe_engine': {'mode_flags': {'use_subprocess42': True}} | 580 '$recipe_engine': {'mode_flags': {'use_subprocess42': True}} |
| 567 }) | 581 }) |
| OLD | NEW |