| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'ppapi_unittests_br', | 101 'ppapi_unittests_br', |
| 102 'printing_br', | 102 'printing_br', |
| 103 'remoting_br', | 103 'remoting_br', |
| 104 'sync_integration_br', | 104 'sync_integration_br', |
| 105 'telemetry_perf_unittests_br', | 105 'telemetry_perf_unittests_br', |
| 106 'telemetry_unittests_br', | 106 'telemetry_unittests_br', |
| 107 'unit_br', | 107 'unit_br', |
| 108 'url_unittests_br', | 108 'url_unittests_br', |
| 109 ] + chromium_factory.blink_tests_for_chromium_tryjobs | 109 ] + chromium_factory.blink_tests_for_chromium_tryjobs |
| 110 | 110 |
| 111 b_win_rel_naclmore = CreateBuilder( | |
| 112 target='Release', | |
| 113 platform='win32', | |
| 114 options=['all'], | |
| 115 tests=win_tests, | |
| 116 builder_name='win_rel_naclmore', | |
| 117 slavebuilddir='win', | |
| 118 goma=True, | |
| 119 factory_properties={ | |
| 120 'gclient_env': { | |
| 121 }, | |
| 122 }) | |
| 123 | |
| 124 | |
| 125 win_x64_options = [ | 111 win_x64_options = [ |
| 126 '--', 'all' | 112 '--', 'all' |
| 127 ] | 113 ] |
| 128 | 114 |
| 129 drmemory_gyp_defines = 'build_for_tool=drmemory' | 115 drmemory_gyp_defines = 'build_for_tool=drmemory' |
| 130 | 116 |
| 131 b_drmemory_win = { | 117 b_drmemory_win = { |
| 132 'name': 'win_drmemory', | 118 'name': 'win_drmemory', |
| 133 'factory': m_chromium_win.ChromiumFactory( | 119 'factory': m_chromium_win.ChromiumFactory( |
| 134 slave_type='Trybot', | 120 slave_type='Trybot', |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 target='Release', | 231 target='Release', |
| 246 platform='win32', | 232 platform='win32', |
| 247 options=[], | 233 options=[], |
| 248 tests=[], | 234 tests=[], |
| 249 builder_name='win_nacl_sdk_build', | 235 builder_name='win_nacl_sdk_build', |
| 250 slavebuilddir='win', | 236 slavebuilddir='win', |
| 251 annotation_script=master_config_tryserver.nacl_sdk_script_build, | 237 annotation_script=master_config_tryserver.nacl_sdk_script_build, |
| 252 goma=True) | 238 goma=True) |
| 253 | 239 |
| 254 c['builders'] = [ | 240 c['builders'] = [ |
| 255 b_win_rel_naclmore, | |
| 256 b_drmemory_win, | 241 b_drmemory_win, |
| 257 b_win_nacl_sdk, | 242 b_win_nacl_sdk, |
| 258 b_win_nacl_sdk_build, | 243 b_win_nacl_sdk_build, |
| 259 ] + chromium_builders | 244 ] + chromium_builders |
| 260 | 245 |
| 261 | 246 |
| 262 # Slaves are loaded from slaves.cfg. | 247 # Slaves are loaded from slaves.cfg. |
| 263 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') | 248 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumWin') |
| 264 | 249 |
| 265 for builder in c['builders']: | 250 for builder in c['builders']: |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 # base.make_stop_form = hack_stop(base.make_stop_form) | 396 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 412 | 397 |
| 413 | 398 |
| 414 ####### PROJECT IDENTITY | 399 ####### PROJECT IDENTITY |
| 415 | 400 |
| 416 # The 'projectURL' string will be used to provide a link | 401 # The 'projectURL' string will be used to provide a link |
| 417 # from buildbot HTML pages to your project's home page. | 402 # from buildbot HTML pages to your project's home page. |
| 418 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 403 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 419 | 404 |
| 420 # vi: set ts=4 sts=2 sw=2 et: | 405 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |