| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 chromium_builders.append({ | 101 chromium_builders.append({ |
| 102 'name': 'win_chromium_x64_rel_ng', | 102 'name': 'win_chromium_x64_rel_ng', |
| 103 'factory': baseFactory( | 103 'factory': baseFactory( |
| 104 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), | 104 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), |
| 105 # Share build directory with compatible existing builders to save space. | 105 # Share build directory with compatible existing builders to save space. |
| 106 'slavebuilddir': 'win' | 106 'slavebuilddir': 'win' |
| 107 }) | 107 }) |
| 108 | 108 |
| 109 chromium_builders.extend([{ | 109 chromium_builders.extend([{ |
| 110 'name': 'win8_chromium_ng', | 110 'name': 'win8_chromium_gyp_rel', |
| 111 'factory': baseFactory('chromium_trybot'), | 111 'factory': baseFactory('chromium_trybot'), |
| 112 'slavebuilddir': 'win_gn', | 112 'slavebuilddir': 'win_gyp', |
| 113 },{ | 113 },{ |
| 114 'name': 'win8_chromium_gn_dbg', | 114 'name': 'win8_chromium_gyp_dbg', |
| 115 'factory': baseFactory('chromium_trybot'), | 115 'factory': baseFactory('chromium_trybot'), |
| 116 'slavebuilddir': 'win_gn', | 116 'slavebuilddir': 'win_gyp', |
| 117 },{ | 117 },{ |
| 118 'name': 'win8_chromium_gn_upload', | 118 'name': 'win8_chromium_gn_upload', |
| 119 'factory': baseFactory('chromium_gn_upload'), | 119 'factory': baseFactory('chromium_gn_upload'), |
| 120 'slavebuilddir': 'win_gn', | 120 'slavebuilddir': 'win_gn', |
| 121 }, | 121 }, |
| 122 ]) | 122 ]) |
| 123 | 123 |
| 124 chromium_builders.append({ | 124 chromium_builders.append({ |
| 125 'name': 'win_upload_clang', | 125 'name': 'win_upload_clang', |
| 126 'factory': baseFactory('chromium_upload_clang'), | 126 'factory': baseFactory('chromium_upload_clang'), |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 # base.make_stop_form = hack_stop(base.make_stop_form) | 382 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 383 | 383 |
| 384 | 384 |
| 385 ####### PROJECT IDENTITY | 385 ####### PROJECT IDENTITY |
| 386 | 386 |
| 387 # The 'projectURL' string will be used to provide a link | 387 # The 'projectURL' string will be used to provide a link |
| 388 # from buildbot HTML pages to your project's home page. | 388 # from buildbot HTML pages to your project's home page. |
| 389 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 389 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 390 | 390 |
| 391 # vi: set ts=4 sts=2 sw=2 et: | 391 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |