| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'factory': m_annotator.BaseFactory('chromium_trybot'), | 110 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 111 'slavebuilddir': 'win_gn', | 111 'slavebuilddir': 'win_gn', |
| 112 },{ | 112 },{ |
| 113 'name': 'win8_chromium_gn_upload', | 113 'name': 'win8_chromium_gn_upload', |
| 114 'factory': m_annotator.BaseFactory('chromium_gn_upload'), | 114 'factory': m_annotator.BaseFactory('chromium_gn_upload'), |
| 115 'slavebuilddir': 'win_gn', | 115 'slavebuilddir': 'win_gn', |
| 116 }, | 116 }, |
| 117 ]) | 117 ]) |
| 118 | 118 |
| 119 chromium_builders.append({ | 119 chromium_builders.append({ |
| 120 'name': 'win_chromium_clang_upload', | 120 'name': 'win_upload_clang', |
| 121 'factory': m_annotator.BaseFactory('chromium_clang_upload'), | 121 'factory': m_annotator.BaseFactory('chromium_upload_clang'), |
| 122 'slavebuilddir': 'build_and_upload_clang', | 122 'slavebuilddir': 'win_upload_clang', |
| 123 }) | 123 }) |
| 124 | 124 |
| 125 chromium_builders.extend([{ | 125 chromium_builders.extend([{ |
| 126 'name': 'win_pgo', | 126 'name': 'win_pgo', |
| 127 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000), | 127 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000), |
| 128 'slavebuilddir': 'win', | 128 'slavebuilddir': 'win', |
| 129 }, | 129 }, |
| 130 ]) | 130 ]) |
| 131 | 131 |
| 132 chromium_builders.append({ | 132 chromium_builders.append({ |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 # base.make_stop_form = hack_stop(base.make_stop_form) | 362 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 363 | 363 |
| 364 | 364 |
| 365 ####### PROJECT IDENTITY | 365 ####### PROJECT IDENTITY |
| 366 | 366 |
| 367 # The 'projectURL' string will be used to provide a link | 367 # The 'projectURL' string will be used to provide a link |
| 368 # from buildbot HTML pages to your project's home page. | 368 # from buildbot HTML pages to your project's home page. |
| 369 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 369 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 370 | 370 |
| 371 # vi: set ts=4 sts=2 sw=2 et: | 371 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |