| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 } | 177 } |
| 178 | 178 |
| 179 # These variable builders are used by Findit to identify culprit commits for | 179 # These variable builders are used by Findit to identify culprit commits for |
| 180 # compile or test failures on the main waterfall. They run on optional slaves | 180 # compile or test failures on the main waterfall. They run on optional slaves |
| 181 # and NOT CQ slaves. | 181 # and NOT CQ slaves. |
| 182 variable_builders = [ | 182 variable_builders = [ |
| 183 { | 183 { |
| 184 'name': 'mac_chromium_variable', | 184 'name': 'mac_chromium_variable', |
| 185 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 185 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 186 'slavebuilddir': 'mac' | 186 'slavebuilddir': 'mac' |
| 187 }, |
| 188 { |
| 189 'name': 'mac_chromium_asan_variable', |
| 190 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 191 'slavebuilddir': 'mac_asan' |
| 187 } | 192 } |
| 188 ] | 193 ] |
| 189 | 194 |
| 190 c['builders'] = [ | 195 c['builders'] = [ |
| 191 b_ios_dbg_simulator_ninja, | 196 b_ios_dbg_simulator_ninja, |
| 192 b_ios_rel_device_ninja, | 197 b_ios_rel_device_ninja, |
| 193 b_ios_dbg_simulator, | 198 b_ios_dbg_simulator, |
| 194 b_ios_rel_device, | 199 b_ios_rel_device, |
| 195 b_ios_dbg_simulator_gn, | 200 b_ios_dbg_simulator_gn, |
| 196 b_ios_rel_device_gn, | 201 b_ios_rel_device_gn, |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 # base.make_stop_form = hack_stop(base.make_stop_form) | 328 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 324 | 329 |
| 325 | 330 |
| 326 ####### PROJECT IDENTITY | 331 ####### PROJECT IDENTITY |
| 327 | 332 |
| 328 # The 'projectURL' string will be used to provide a link | 333 # The 'projectURL' string will be used to provide a link |
| 329 # from buildbot HTML pages to your project's home page. | 334 # from buildbot HTML pages to your project's home page. |
| 330 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 335 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 331 | 336 |
| 332 # vi: set ts=4 sts=2 sw=2 et: | 337 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |