| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 { | 213 { |
| 214 'name': 'mac_chromium_variable_10.10', | 214 'name': 'mac_chromium_variable_10.10', |
| 215 'factory': baseFactory('findit/chromium/compile'), | 215 'factory': baseFactory('findit/chromium/compile'), |
| 216 'slavebuilddir': 'mac_variable' | 216 'slavebuilddir': 'mac_variable' |
| 217 }, | 217 }, |
| 218 { | 218 { |
| 219 'name': 'mac_chromium_variable_10.10_layout', | 219 'name': 'mac_chromium_variable_10.10_layout', |
| 220 'factory': baseFactory('findit/chromium/compile'), | 220 'factory': baseFactory('findit/chromium/compile'), |
| 221 'slavebuilddir': 'mac_variable' | 221 'slavebuilddir': 'mac_variable' |
| 222 }, | 222 }, |
| 223 { |
| 224 'name': 'mac_chromium_variable_10.11', |
| 225 'factory': baseFactory('findit/chromium/compile'), |
| 226 'slavebuilddir': 'mac_variable' |
| 227 }, |
| 228 { |
| 229 'name': 'mac_chromium_variable_10.11_layout', |
| 230 'factory': baseFactory('findit/chromium/compile'), |
| 231 'slavebuilddir': 'mac_variable' |
| 232 }, |
| 223 ] | 233 ] |
| 224 | 234 |
| 225 c['builders'] = [ | 235 c['builders'] = [ |
| 226 b_ios_simulator, | 236 b_ios_simulator, |
| 227 b_ios_simulator_gn, | 237 b_ios_simulator_gn, |
| 228 b_ios_device, | 238 b_ios_device, |
| 229 b_ios_device_gn, | 239 b_ios_device_gn, |
| 230 b_mac_nacl_sdk, | 240 b_mac_nacl_sdk, |
| 231 b_mac_nacl_sdk_build, | 241 b_mac_nacl_sdk_build, |
| 232 ] + chromium_builders + variable_builders | 242 ] + chromium_builders + variable_builders |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 # base.make_stop_form = hack_stop(base.make_stop_form) | 366 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 357 | 367 |
| 358 | 368 |
| 359 ####### PROJECT IDENTITY | 369 ####### PROJECT IDENTITY |
| 360 | 370 |
| 361 # The 'projectURL' string will be used to provide a link | 371 # The 'projectURL' string will be used to provide a link |
| 362 # from buildbot HTML pages to your project's home page. | 372 # from buildbot HTML pages to your project's home page. |
| 363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 373 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 364 | 374 |
| 365 # vi: set ts=4 sts=2 sw=2 et: | 375 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |