| 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 27 matching lines...) Expand all Loading... |
| 38 linux_arm_testers = [9] | 38 linux_arm_testers = [9] |
| 39 | 39 |
| 40 # Have a dedicated pool for presubmit jobs - all CQ jobs | 40 # Have a dedicated pool for presubmit jobs - all CQ jobs |
| 41 # need a presubmit first and so must be responsive. | 41 # need a presubmit first and so must be responsive. |
| 42 presubmit_builders = ['chromium_presubmit', 'blink_presubmit'] | 42 presubmit_builders = ['chromium_presubmit', 'blink_presubmit'] |
| 43 | 43 |
| 44 # Configurations on every VM. | 44 # Configurations on every VM. |
| 45 base = presubmit_builders + [ | 45 base = presubmit_builders + [ |
| 46 # One line per shared directory. In decreasing usage: | 46 # One line per shared directory. In decreasing usage: |
| 47 'linux_chromium_dbg', 'linux_chromium_rel', 'linux_chromium_rel_swarming', | 47 'linux_chromium_dbg', 'linux_chromium_rel', 'linux_chromium_rel_swarming', |
| 48 'linux_chromium_dbg_ng', 'linux_chromium_rel_ng', |
| 48 'linux_chromium_compile_dbg', 'linux_chromium_compile_rel', | 49 'linux_chromium_compile_dbg', 'linux_chromium_compile_rel', |
| 49 'linux_rel_naclmore', | 50 'linux_rel_naclmore', |
| 50 'linux_chromium_gn_dbg', 'linux_chromium_gn_rel', | 51 'linux_chromium_gn_dbg', 'linux_chromium_gn_rel', |
| 51 'android_chromium_gn_compile_dbg', | 52 'android_chromium_gn_compile_dbg', |
| 52 'android_chromium_gn_compile_dbg_recipe', | 53 'android_chromium_gn_compile_dbg_recipe', |
| 53 'android_chromium_gn_compile_rel', | 54 'android_chromium_gn_compile_rel', |
| 54 'android_chromium_gn_compile_rel_recipe', | 55 'android_chromium_gn_compile_rel_recipe', |
| 55 | 56 |
| 56 'linux_chromium_clang_dbg', 'linux_chromium_clang_rel', | 57 'linux_chromium_clang_dbg', 'linux_chromium_clang_rel', |
| 57 | 58 |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 'os': 'linux', | 275 'os': 'linux', |
| 275 'version': 'precise', | 276 'version': 'precise', |
| 276 'bits': '64', | 277 'bits': '64', |
| 277 } for i in range(520, 550) | 278 } for i in range(520, 550) |
| 278 ] | 279 ] |
| 279 | 280 |
| 280 return compile_slaves + test_slaves + aosp_slaves | 281 return compile_slaves + test_slaves + aosp_slaves |
| 281 | 282 |
| 282 | 283 |
| 283 slaves = linux() + android() | 284 slaves = linux() + android() |
| OLD | NEW |