| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 b_mac_nacl_sdk_build = { | 174 b_mac_nacl_sdk_build = { |
| 175 'name': 'mac_nacl_sdk_build', | 175 'name': 'mac_nacl_sdk_build', |
| 176 'factory': m_annotator.BaseFactory('nacl/sdk_build'), | 176 'factory': m_annotator.BaseFactory('nacl/sdk_build'), |
| 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_asan_variable', |
| 185 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 186 'slavebuilddir': 'mac_asan' |
| 187 }, |
| 188 { |
| 184 'name': 'mac_chromium_variable', | 189 'name': 'mac_chromium_variable', |
| 185 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 190 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 186 'slavebuilddir': 'mac' | 191 'slavebuilddir': 'mac' |
| 187 }, | 192 }, |
| 188 { | 193 { |
| 189 'name': 'mac_chromium_asan_variable', | 194 'name': 'mac_chromium_variable_gn', |
| 190 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 195 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 191 'slavebuilddir': 'mac_asan' | 196 'slavebuilddir': 'mac_gn' |
| 192 } | 197 }, |
| 193 ] | 198 ] |
| 194 | 199 |
| 195 c['builders'] = [ | 200 c['builders'] = [ |
| 196 b_ios_dbg_simulator_ninja, | 201 b_ios_dbg_simulator_ninja, |
| 197 b_ios_rel_device_ninja, | 202 b_ios_rel_device_ninja, |
| 198 b_ios_dbg_simulator, | 203 b_ios_dbg_simulator, |
| 199 b_ios_rel_device, | 204 b_ios_rel_device, |
| 200 b_ios_dbg_simulator_gn, | 205 b_ios_dbg_simulator_gn, |
| 201 b_ios_rel_device_gn, | 206 b_ios_rel_device_gn, |
| 202 b_mac_nacl_sdk, | 207 b_mac_nacl_sdk, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 # base.make_stop_form = hack_stop(base.make_stop_form) | 333 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 329 | 334 |
| 330 | 335 |
| 331 ####### PROJECT IDENTITY | 336 ####### PROJECT IDENTITY |
| 332 | 337 |
| 333 # The 'projectURL' string will be used to provide a link | 338 # The 'projectURL' string will be used to provide a link |
| 334 # from buildbot HTML pages to your project's home page. | 339 # from buildbot HTML pages to your project's home page. |
| 335 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 340 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 336 | 341 |
| 337 # vi: set ts=4 sts=2 sw=2 et: | 342 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |