| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 { | 198 { |
| 199 'name': 'mac_chromium_variable_chrome', | 199 'name': 'mac_chromium_variable_chrome', |
| 200 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 200 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 201 'slavebuilddir': 'mac_chrome' | 201 'slavebuilddir': 'mac_chrome' |
| 202 }, | 202 }, |
| 203 { | 203 { |
| 204 'name': 'mac_chromium_variable_gn', | 204 'name': 'mac_chromium_variable_gn', |
| 205 'factory': m_annotator.BaseFactory('findit/chromium/compile'), | 205 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 206 'slavebuilddir': 'mac_gn' | 206 'slavebuilddir': 'mac_gn' |
| 207 }, | 207 }, |
| 208 { |
| 209 'name': 'mac_chromium_variable_layout', |
| 210 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 211 'slavebuilddir': 'mac_layout' |
| 212 }, |
| 213 { |
| 214 'name': 'mac_chromium_variable_10.10', |
| 215 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 216 'slavebuilddir': 'mac' |
| 217 }, |
| 218 { |
| 219 'name': 'mac_chromium_variable_10.10_layout', |
| 220 'factory': m_annotator.BaseFactory('findit/chromium/compile'), |
| 221 'slavebuilddir': 'mac_layout' |
| 222 }, |
| 208 ] | 223 ] |
| 209 | 224 |
| 210 c['builders'] = [ | 225 c['builders'] = [ |
| 211 b_ios_dbg_simulator_ninja, | 226 b_ios_dbg_simulator_ninja, |
| 212 b_ios_rel_device_ninja, | 227 b_ios_rel_device_ninja, |
| 213 b_ios_dbg_simulator, | 228 b_ios_dbg_simulator, |
| 214 b_ios_rel_device, | 229 b_ios_rel_device, |
| 215 b_ios_dbg_simulator_gn, | 230 b_ios_dbg_simulator_gn, |
| 216 b_ios_rel_device_gn, | 231 b_ios_rel_device_gn, |
| 217 b_mac_nacl_sdk, | 232 b_mac_nacl_sdk, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 # base.make_stop_form = hack_stop(base.make_stop_form) | 358 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 344 | 359 |
| 345 | 360 |
| 346 ####### PROJECT IDENTITY | 361 ####### PROJECT IDENTITY |
| 347 | 362 |
| 348 # The 'projectURL' string will be used to provide a link | 363 # The 'projectURL' string will be used to provide a link |
| 349 # from buildbot HTML pages to your project's home page. | 364 # from buildbot HTML pages to your project's home page. |
| 350 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 365 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 351 | 366 |
| 352 # vi: set ts=4 sts=2 sw=2 et: | 367 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |