| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 ]) | 222 ]) |
| 223 | 223 |
| 224 chromium_builders.extend([{ | 224 chromium_builders.extend([{ |
| 225 'name': 'blimp_linux_dbg', | 225 'name': 'blimp_linux_dbg', |
| 226 'factory': m_remote_run_chromium_src( | 226 'factory': m_remote_run_chromium_src( |
| 227 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 227 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 228 'slavebuilddir': 'remote_run', | 228 'slavebuilddir': 'remote_run', |
| 229 }, | 229 }, |
| 230 ]) | 230 ]) |
| 231 | 231 |
| 232 chromium_builders.extend([{ |
| 233 'name': 'linux_chromium_headless_dbg', |
| 234 'factory': m_remote_run_chromium_src( |
| 235 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 236 'slavebuilddir': 'remote_run', |
| 237 }, |
| 238 ]) |
| 239 |
| 232 b_linux_site_isolation = { | 240 b_linux_site_isolation = { |
| 233 'name': 'linux_site_isolation', | 241 'name': 'linux_site_isolation', |
| 234 'factory': m_remote_run_chromium_src('chromium_trybot'), | 242 'factory': m_remote_run_chromium_src('chromium_trybot'), |
| 235 'slavebuilddir': 'remote_run', | 243 'slavebuilddir': 'remote_run', |
| 236 } | 244 } |
| 237 | 245 |
| 238 b_linux_chromium_asan_rel_ng = { | 246 b_linux_chromium_asan_rel_ng = { |
| 239 'name': 'linux_chromium_asan_rel_ng', | 247 'name': 'linux_chromium_asan_rel_ng', |
| 240 'factory': m_remote_run_chromium_src( | 248 'factory': m_remote_run_chromium_src( |
| 241 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 249 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 # base.make_stop_form = hack_stop(base.make_stop_form) | 551 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 544 | 552 |
| 545 | 553 |
| 546 ####### PROJECT IDENTITY | 554 ####### PROJECT IDENTITY |
| 547 | 555 |
| 548 # The 'projectURL' string will be used to provide a link | 556 # The 'projectURL' string will be used to provide a link |
| 549 # from buildbot HTML pages to your project's home page. | 557 # from buildbot HTML pages to your project's home page. |
| 550 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 558 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 551 | 559 |
| 552 # vi: set ts=4 sts=2 sw=2 et: | 560 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |