| 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 # The identifier of the factory is the build configuration. If two factories | 391 # The identifier of the factory is the build configuration. If two factories |
| 392 # are using the same build configuration, they should have the same identifier. | 392 # are using the same build configuration, they should have the same identifier. |
| 393 | 393 |
| 394 # BuilderTesters using a custom build configuration. | 394 # BuilderTesters using a custom build configuration. |
| 395 f_cr_rel_full = F_WIN('chromium-rel-xp', clobber=True, | 395 f_cr_rel_full = F_WIN('chromium-rel-xp', clobber=True, |
| 396 project='all.sln', | 396 project='all.sln', |
| 397 tests=['sizes', 'selenium', 'unit', 'ui', 'startup', | 397 tests=['sizes', 'selenium', 'unit', 'ui', 'startup', |
| 398 'test_shell', 'page_cycler', 'tab_switching', | 398 'test_shell', 'page_cycler', 'tab_switching', |
| 399 'page_cycler_http', 'memory', 'reliability', | 399 'page_cycler_http', 'memory', 'reliability', |
| 400 'printing', 'dom_checker', 'check_deps', | 400 'printing', 'dom_checker', 'check_deps', |
| 401 'browser_tests', 'courgette'], | 401 'browser_tests', 'courgette', 'check_bins'], |
| 402 factory_properties={'archive_build': True, | 402 factory_properties={'archive_build': True, |
| 403 'show_perf_results': True, | 403 'show_perf_results': True, |
| 404 'perf_id': 'chromium-rel-xp', | 404 'perf_id': 'chromium-rel-xp', |
| 405 'process_dumps': True, | 405 'process_dumps': True, |
| 406 'start_crash_handler': True,}) | 406 'start_crash_handler': True,}) |
| 407 | 407 |
| 408 f_cr_reliability = m_win.ReliabilityTestsFactory() | 408 f_cr_reliability = m_win.ReliabilityTestsFactory() |
| 409 | 409 |
| 410 f_cr_rel_purify_unit = F_WIN('chromium-purify-unit', mode='purify', | 410 f_cr_rel_purify_unit = F_WIN('chromium-purify-unit', mode='purify', |
| 411 project='all.sln;purify_builder_unit', | 411 project='all.sln;purify_builder_unit', |
| (...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1865 c['projectName'] = ActiveMaster.project_name | 1865 c['projectName'] = ActiveMaster.project_name |
| 1866 c['projectURL'] = config.Master.project_url | 1866 c['projectURL'] = config.Master.project_url |
| 1867 | 1867 |
| 1868 # the 'buildbotURL' string should point to the location where the buildbot's | 1868 # the 'buildbotURL' string should point to the location where the buildbot's |
| 1869 # internal web server (usually the html.Waterfall page) is visible. This | 1869 # internal web server (usually the html.Waterfall page) is visible. This |
| 1870 # typically uses the port number set in the Waterfall 'status' entry, but | 1870 # typically uses the port number set in the Waterfall 'status' entry, but |
| 1871 # with an externally-visible host name which the buildbot cannot figure out | 1871 # with an externally-visible host name which the buildbot cannot figure out |
| 1872 # without some help. | 1872 # without some help. |
| 1873 | 1873 |
| 1874 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' | 1874 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' |
| OLD | NEW |