| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright 2014 The Chromium Authors. All rights reserved. | 3 # Copyright 2014 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 def linux(): | 9 def linux(): |
| 10 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') | 10 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 'master': 'TryServerChromiumLinux', | 166 'master': 'TryServerChromiumLinux', |
| 167 'os': 'linux', | 167 'os': 'linux', |
| 168 'version': 'precise', | 168 'version': 'precise', |
| 169 'bits': '64', | 169 'bits': '64', |
| 170 'builder': ['linux_chromium_browser_side_navigation_rel'], | 170 'builder': ['linux_chromium_browser_side_navigation_rel'], |
| 171 'hostname': 'slave914-c4', | 171 'hostname': 'slave914-c4', |
| 172 'pool': 'linux_chromium_browser_side_navigation_rel', | 172 'pool': 'linux_chromium_browser_side_navigation_rel', |
| 173 } | 173 } |
| 174 ]) | 174 ]) |
| 175 | 175 |
| 176 result.extend([ |
| 177 { |
| 178 'master': 'TryServerChromiumLinux', |
| 179 'os': 'linux', |
| 180 'version': 'precise', |
| 181 'bits': '64', |
| 182 'builder': ['linux_layout_tests_slimming_paint_v2'], |
| 183 'hostname': 'slave775-c4', |
| 184 'pool': 'linux_layout_tests_slimming_paint_v2', |
| 185 } |
| 186 ]) |
| 187 |
| 176 return result | 188 return result |
| 177 | 189 |
| 178 | 190 |
| 179 slaves = linux() | 191 slaves = linux() |
| OLD | NEW |