| 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 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 }) | 197 }) |
| 198 | 198 |
| 199 # Chromecast builders using chromium_trybot | 199 # Chromecast builders using chromium_trybot |
| 200 chromium_builders.extend([{ | 200 chromium_builders.extend([{ |
| 201 'name': 'cast_shell_linux', | 201 'name': 'cast_shell_linux', |
| 202 'factory': baseFactory( | 202 'factory': baseFactory( |
| 203 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 203 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 204 }, | 204 }, |
| 205 ]) | 205 ]) |
| 206 | 206 |
| 207 chromium_builders.extend([{ |
| 208 'name': 'blimp_linux_dbg', |
| 209 'factory': baseFactory( |
| 210 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 211 'slavebuilddir': 'linux_blimp', |
| 212 }, |
| 213 ]) |
| 214 |
| 207 b_linux_site_isolation = { | 215 b_linux_site_isolation = { |
| 208 'name': 'linux_site_isolation', | 216 'name': 'linux_site_isolation', |
| 209 'factory': baseFactory('chromium_trybot'), | 217 'factory': baseFactory('chromium_trybot'), |
| 210 # Share build directory with compatible existing builders to save space. | 218 # Share build directory with compatible existing builders to save space. |
| 211 'slavebuilddir': 'linux', | 219 'slavebuilddir': 'linux', |
| 212 } | 220 } |
| 213 | 221 |
| 214 b_linux_chromium_asan_rel_ng = { | 222 b_linux_chromium_asan_rel_ng = { |
| 215 'name': 'linux_chromium_asan_rel_ng', | 223 'name': 'linux_chromium_asan_rel_ng', |
| 216 'factory': baseFactory( | 224 'factory': baseFactory( |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 # base.make_stop_form = hack_stop(base.make_stop_form) | 520 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 513 | 521 |
| 514 | 522 |
| 515 ####### PROJECT IDENTITY | 523 ####### PROJECT IDENTITY |
| 516 | 524 |
| 517 # The 'projectURL' string will be used to provide a link | 525 # The 'projectURL' string will be used to provide a link |
| 518 # from buildbot HTML pages to your project's home page. | 526 # from buildbot HTML pages to your project's home page. |
| 519 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 527 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 520 | 528 |
| 521 # vi: set ts=4 sts=2 sw=2 et: | 529 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |