| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 { | 188 { |
| 189 'name': 'mac_chromium_variable', | 189 'name': 'mac_chromium_variable', |
| 190 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 190 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 191 'slavebuilddir': 'mac' | 191 'slavebuilddir': 'mac' |
| 192 }, | 192 }, |
| 193 { | 193 { |
| 194 'name': 'mac_chromium_variable_gn', | 194 'name': 'mac_chromium_variable_gn', |
| 195 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 195 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 196 'slavebuilddir': 'mac_gn' | 196 'slavebuilddir': 'mac_gn' |
| 197 }, | 197 }, |
| 198 { |
| 199 'name': 'mac_chromium_variable_archive', |
| 200 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 201 'slavebuilddir': 'mac_archive' |
| 202 } |
| 198 ] | 203 ] |
| 199 | 204 |
| 200 c['builders'] = [ | 205 c['builders'] = [ |
| 201 b_ios_dbg_simulator_ninja, | 206 b_ios_dbg_simulator_ninja, |
| 202 b_ios_rel_device_ninja, | 207 b_ios_rel_device_ninja, |
| 203 b_ios_dbg_simulator, | 208 b_ios_dbg_simulator, |
| 204 b_ios_rel_device, | 209 b_ios_rel_device, |
| 205 b_ios_dbg_simulator_gn, | 210 b_ios_dbg_simulator_gn, |
| 206 b_ios_rel_device_gn, | 211 b_ios_rel_device_gn, |
| 207 b_mac_nacl_sdk, | 212 b_mac_nacl_sdk, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 # base.make_stop_form = hack_stop(base.make_stop_form) | 338 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 334 | 339 |
| 335 | 340 |
| 336 ####### PROJECT IDENTITY | 341 ####### PROJECT IDENTITY |
| 337 | 342 |
| 338 # The 'projectURL' string will be used to provide a link | 343 # The 'projectURL' string will be used to provide a link |
| 339 # from buildbot HTML pages to your project's home page. | 344 # from buildbot HTML pages to your project's home page. |
| 340 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 345 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 341 | 346 |
| 342 # vi: set ts=4 sts=2 sw=2 et: | 347 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |