| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # See master.experimental/slaves.cfg for documentation. | 7 # See master.experimental/slaves.cfg for documentation. |
| 8 | 8 |
| 9 | 9 |
| 10 def expand_extra_builders(extras, total): | 10 def expand_extra_builders(extras, total): |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'linux_arm_compile', | 50 'linux_arm_compile', |
| 51 | 51 |
| 52 'linux_chromium_gn_dbg', 'linux_chromium_gn_rel', | 52 'linux_chromium_gn_dbg', 'linux_chromium_gn_rel', |
| 53 'linux_chromium_gn_chromeos_rel', 'linux_chromium_gn_chromeos_dbg', | 53 'linux_chromium_gn_chromeos_rel', 'linux_chromium_gn_chromeos_dbg', |
| 54 'android_chromium_gn_compile_dbg', | 54 'android_chromium_gn_compile_dbg', |
| 55 'android_chromium_gn_compile_dbg_recipe', | 55 'android_chromium_gn_compile_dbg_recipe', |
| 56 'android_chromium_gn_compile_rel', | 56 'android_chromium_gn_compile_rel', |
| 57 'android_chromium_gn_compile_rel_recipe', | 57 'android_chromium_gn_compile_rel_recipe', |
| 58 | 58 |
| 59 'linux_chromium_chromeos_dbg', 'linux_chromium_chromeos_rel', | 59 'linux_chromium_chromeos_dbg', 'linux_chromium_chromeos_rel', |
| 60 'linux_chromium_chromeos_compile_dbg_ng', |
| 61 'linux_chromium_chromeos_compile_rel_ng', |
| 60 'linux_nacl_sdk_build', | 62 'linux_nacl_sdk_build', |
| 61 'linux_nacl_sdk_bionic_build', | 63 'linux_nacl_sdk_bionic_build', |
| 62 | 64 |
| 63 'infra_tester', | 65 'infra_tester', |
| 64 | 66 |
| 65 'tools_build_presubmit', | 67 'tools_build_presubmit', |
| 66 ] | 68 ] |
| 67 | 69 |
| 68 # One of the extra configuration per VM. | 70 # One of the extra configuration per VM. |
| 69 # First the ones barely used. By reducing the number of available slaves, we | 71 # First the ones barely used. By reducing the number of available slaves, we |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 'version': 'precise', | 292 'version': 'precise', |
| 291 'bits': '64', | 293 'bits': '64', |
| 292 } for i in range(100, 241) | 294 } for i in range(100, 241) |
| 293 ] | 295 ] |
| 294 | 296 |
| 295 return compile_slaves + test_slaves + aosp_slaves + swarm_dumb_slaves1 + \ | 297 return compile_slaves + test_slaves + aosp_slaves + swarm_dumb_slaves1 + \ |
| 296 swarm_dumb_slaves2 | 298 swarm_dumb_slaves2 |
| 297 | 299 |
| 298 | 300 |
| 299 slaves = linux() + android() | 301 slaves = linux() + android() |
| OLD | NEW |