| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # This is the buildmaster config file for the 'chromium' bot. It must | 8 # This is the buildmaster config file for the 'chromium' bot. It must |
| 9 # be installed as 'master.cfg' in your buildmaster's base directory | 9 # be installed as 'master.cfg' in your buildmaster's base directory |
| 10 # (although the filename can be changed with the --basedir option to | 10 # (although the filename can be changed with the --basedir option to |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 mode='purify', | 261 mode='purify', |
| 262 run_crash_handler=True, | 262 run_crash_handler=True, |
| 263 tests=['purify_ui']) | 263 tests=['purify_ui']) |
| 264 | 264 |
| 265 f_chromium_rel_perf_xp_dual_v8 = m.NewBuildFactory(identifier='chromium-rel', | 265 f_chromium_rel_perf_xp_dual_v8 = m.NewBuildFactory(identifier='chromium-rel', |
| 266 perf_id='chromium-rel-xp-dual-v8', | 266 perf_id='chromium-rel-xp-dual-v8', |
| 267 show_perf_results=True, | 267 show_perf_results=True, |
| 268 run_crash_handler=True, | 268 run_crash_handler=True, |
| 269 tests=['page_cycler', 'startup', | 269 tests=['page_cycler', 'startup', |
| 270 'page_cycler_http', | 270 'page_cycler_http', |
| 271 'tab_switching', 'memory'], | 271 'tab_switching', 'memory', |
| 272 'sunspider', 'v8_benchmark'], |
| 272 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST]) | 273 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST]) |
| 273 | 274 |
| 274 f_chromium_rel_gears = m.NewGearsFactory(identifier='chromium-rel-gears', | 275 f_chromium_rel_gears = m.NewGearsFactory(identifier='chromium-rel-gears', |
| 275 target='Debug') | 276 target='Debug') |
| 276 | 277 |
| 277 f_webkit_rel_armu = m_webkit.NewBuildFactory( | 278 f_webkit_rel_armu = m_webkit.NewBuildFactory( |
| 278 'webkit-rel-armu', | 279 'webkit-rel-armu', |
| 279 solution='webkit_armu.sln', | 280 solution='webkit_armu.sln', |
| 280 tests=['test_shell', 'webkit'], | 281 tests=['test_shell', 'webkit'], |
| 281 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST]) | 282 gclient_custom_deps=[m_webkit.CUSTOM_DEPS_V8_LATEST]) |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 c['projectURL'] = config.Master.project_url | 487 c['projectURL'] = config.Master.project_url |
| 487 | 488 |
| 488 # the 'buildbotURL' string should point to the location where the buildbot's | 489 # the 'buildbotURL' string should point to the location where the buildbot's |
| 489 # internal web server (usually the html.Waterfall page) is visible. This | 490 # internal web server (usually the html.Waterfall page) is visible. This |
| 490 # typically uses the port number set in the Waterfall 'status' entry, but | 491 # typically uses the port number set in the Waterfall 'status' entry, but |
| 491 # with an externally-visible host name which the buildbot cannot figure out | 492 # with an externally-visible host name which the buildbot cannot figure out |
| 492 # without some help. | 493 # without some help. |
| 493 | 494 |
| 494 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' | 495 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' |
| 495 | 496 |
| OLD | NEW |