| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 b_ios_simulator = { | 60 b_ios_simulator = { |
| 61 'name': 'ios-simulator', | 61 'name': 'ios-simulator', |
| 62 'factory': baseFactory('ios/try'), | 62 'factory': baseFactory('ios/try'), |
| 63 } | 63 } |
| 64 | 64 |
| 65 b_ios_simulator_gn = { | 65 b_ios_simulator_gn = { |
| 66 'name': 'ios-simulator-gn', | 66 'name': 'ios-simulator-gn', |
| 67 'factory': baseFactory('ios/try'), | 67 'factory': baseFactory('ios/try'), |
| 68 } | 68 } |
| 69 | 69 |
| 70 b_ios_simulator_cronet = { |
| 71 'name': 'ios-simulator-cronet', |
| 72 'factory': baseFactory('ios/try'), |
| 73 } |
| 74 |
| 70 b_ios_device = { | 75 b_ios_device = { |
| 71 'name': 'ios-device', | 76 'name': 'ios-device', |
| 72 'factory': baseFactory('ios/try'), | 77 'factory': baseFactory('ios/try'), |
| 73 } | 78 } |
| 74 | 79 |
| 75 b_ios_device_gn = { | 80 b_ios_device_gn = { |
| 76 'name': 'ios-device-gn', | 81 'name': 'ios-device-gn', |
| 77 'factory': baseFactory('ios/try'), | 82 'factory': baseFactory('ios/try'), |
| 78 } | 83 } |
| 79 | 84 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 { | 227 { |
| 223 'name': 'mac_chromium_variable_10.11_layout', | 228 'name': 'mac_chromium_variable_10.11_layout', |
| 224 'factory': baseFactory('findit/chromium/compile'), | 229 'factory': baseFactory('findit/chromium/compile'), |
| 225 'slavebuilddir': 'mac_variable' | 230 'slavebuilddir': 'mac_variable' |
| 226 }, | 231 }, |
| 227 ] | 232 ] |
| 228 | 233 |
| 229 c['builders'] = [ | 234 c['builders'] = [ |
| 230 b_ios_simulator, | 235 b_ios_simulator, |
| 231 b_ios_simulator_gn, | 236 b_ios_simulator_gn, |
| 237 b_ios_simulator_cronet, |
| 232 b_ios_device, | 238 b_ios_device, |
| 233 b_ios_device_gn, | 239 b_ios_device_gn, |
| 234 b_mac_nacl_sdk, | 240 b_mac_nacl_sdk, |
| 235 b_mac_nacl_sdk_build, | 241 b_mac_nacl_sdk_build, |
| 236 ] + chromium_builders + variable_builders | 242 ] + chromium_builders + variable_builders |
| 237 | 243 |
| 238 | 244 |
| 239 # Slaves are loaded from slaves.cfg. | 245 # Slaves are loaded from slaves.cfg. |
| 240 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumMac') | 246 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumMac') |
| 241 | 247 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 # base.make_stop_form = hack_stop(base.make_stop_form) | 366 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 361 | 367 |
| 362 | 368 |
| 363 ####### PROJECT IDENTITY | 369 ####### PROJECT IDENTITY |
| 364 | 370 |
| 365 # The 'projectURL' string will be used to provide a link | 371 # The 'projectURL' string will be used to provide a link |
| 366 # from buildbot HTML pages to your project's home page. | 372 # from buildbot HTML pages to your project's home page. |
| 367 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 373 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 368 | 374 |
| 369 # vi: set ts=4 sts=2 sw=2 et: | 375 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |