| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'slavebuilddir': 'mac' | 117 'slavebuilddir': 'mac' |
| 118 }) | 118 }) |
| 119 | 119 |
| 120 chromium_builders.append({ | 120 chromium_builders.append({ |
| 121 'name': 'mac_chromium_archive_rel_ng', | 121 'name': 'mac_chromium_archive_rel_ng', |
| 122 'factory': baseFactory('chromium_trybot', timeout=3600), | 122 'factory': baseFactory('chromium_trybot', timeout=3600), |
| 123 'slavebuilddir': 'mac_ng' | 123 'slavebuilddir': 'mac_ng' |
| 124 }) | 124 }) |
| 125 | 125 |
| 126 chromium_builders.extend([{ | 126 chromium_builders.extend([{ |
| 127 'name': 'mac_chromium_gn_dbg', | 127 'name': 'mac_chromium_gyp_dbg', |
| 128 'factory': baseFactory('chromium_trybot'), | 128 'factory': baseFactory('chromium_trybot'), |
| 129 'slavebuilddir': 'mac_gn', | 129 'slavebuilddir': 'mac_gyp', |
| 130 }, { | 130 }, { |
| 131 'name': 'mac_chromium_gn_rel', | 131 'name': 'mac_chromium_gyp_rel', |
| 132 'factory': baseFactory( | 132 'factory': baseFactory( |
| 133 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 133 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 134 'slavebuilddir': 'mac_gn', | 134 'slavebuilddir': 'mac_gyp', |
| 135 }, { | 135 }, { |
| 136 'name': 'mac_chromium_gn_upload', | 136 'name': 'mac_chromium_gn_upload', |
| 137 'factory': baseFactory('chromium_gn_upload'), | 137 'factory': baseFactory('chromium_gn_upload'), |
| 138 'slavebuilddir': 'mac_gn', | 138 'slavebuilddir': 'mac_gn', |
| 139 }]) | 139 }]) |
| 140 | 140 |
| 141 chromium_builders.append({ | 141 chromium_builders.append({ |
| 142 'name': 'mac_upload_clang', | 142 'name': 'mac_upload_clang', |
| 143 'factory': baseFactory('chromium_upload_clang'), | 143 'factory': baseFactory('chromium_upload_clang'), |
| 144 'slavebuilddir': 'mac_upload_clang', | 144 'slavebuilddir': 'mac_upload_clang', |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 # base.make_stop_form = hack_stop(base.make_stop_form) | 360 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 361 | 361 |
| 362 | 362 |
| 363 ####### PROJECT IDENTITY | 363 ####### PROJECT IDENTITY |
| 364 | 364 |
| 365 # The 'projectURL' string will be used to provide a link | 365 # The 'projectURL' string will be used to provide a link |
| 366 # from buildbot HTML pages to your project's home page. | 366 # from buildbot HTML pages to your project's home page. |
| 367 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 367 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 368 | 368 |
| 369 # vi: set ts=4 sts=2 sw=2 et: | 369 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |