| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 }) | 108 }) |
| 109 | 109 |
| 110 chromium_builders.append({ | 110 chromium_builders.append({ |
| 111 'name': 'win_chromium_x64_rel_ng', | 111 'name': 'win_chromium_x64_rel_ng', |
| 112 'factory': m_remote_run( | 112 'factory': m_remote_run( |
| 113 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), | 113 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), |
| 114 'slavebuilddir': 'remote_run' | 114 'slavebuilddir': 'remote_run' |
| 115 }) | 115 }) |
| 116 | 116 |
| 117 chromium_builders.extend([{ | 117 chromium_builders.extend([{ |
| 118 'name': 'win8_chromium_gyp_rel', | |
| 119 'factory': m_remote_run('chromium_trybot'), | |
| 120 'slavebuilddir': 'remote_run', | |
| 121 },{ | |
| 122 'name': 'win8_chromium_gyp_dbg', | |
| 123 'factory': m_remote_run('chromium_trybot'), | |
| 124 'slavebuilddir': 'remote_run', | |
| 125 },{ | |
| 126 'name': 'win8_chromium_gn_upload', | 118 'name': 'win8_chromium_gn_upload', |
| 127 'factory': baseFactory('chromium_gn_upload'), | 119 'factory': baseFactory('chromium_gn_upload'), |
| 128 'slavebuilddir': 'win_gn', | 120 'slavebuilddir': 'win_gn', |
| 129 }, | 121 }, |
| 130 ]) | 122 ]) |
| 131 | 123 |
| 132 chromium_builders.append({ | 124 chromium_builders.append({ |
| 133 'name': 'win_upload_clang', | 125 'name': 'win_upload_clang', |
| 134 'factory': baseFactory('chromium_upload_clang'), | 126 'factory': baseFactory('chromium_upload_clang'), |
| 135 'slavebuilddir': 'win_upload_clang', | 127 'slavebuilddir': 'win_upload_clang', |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 # base.make_stop_form = hack_stop(base.make_stop_form) | 381 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 390 | 382 |
| 391 | 383 |
| 392 ####### PROJECT IDENTITY | 384 ####### PROJECT IDENTITY |
| 393 | 385 |
| 394 # The 'projectURL' string will be used to provide a link | 386 # The 'projectURL' string will be used to provide a link |
| 395 # from buildbot HTML pages to your project's home page. | 387 # from buildbot HTML pages to your project's home page. |
| 396 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 388 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 397 | 389 |
| 398 # vi: set ts=4 sts=2 sw=2 et: | 390 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |