| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2006-2009 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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 | 643 |
| 644 f_gyp_mac = m_gyp_mac.GYPFactory(formats=['xcode']) | 644 f_gyp_mac = m_gyp_mac.GYPFactory(formats=['xcode']) |
| 645 | 645 |
| 646 f_gyp_xp = m_gyp_win.GYPFactory(formats=['msvs']) | 646 f_gyp_xp = m_gyp_win.GYPFactory(formats=['msvs']) |
| 647 | 647 |
| 648 f_google_chrome_rel_xp = m_win.ChromiumFactory( | 648 f_google_chrome_rel_xp = m_win.ChromiumFactory( |
| 649 'google-chrome-rel-xp', | 649 'google-chrome-rel-xp', |
| 650 clobber=True, | 650 clobber=True, |
| 651 compile_timeout=2400, | 651 compile_timeout=2400, |
| 652 mode='google_chrome', | 652 mode='google_chrome', |
| 653 tests=['ui', 'unit', 'browser_tests'], | 653 tests=['ui', 'unit', 'browser_tests', 'check_bins'], |
| 654 factory_properties={'gclient_env': { 'GYP_DEFINES' : "branding=Chrome"}}) | 654 factory_properties={'gclient_env': { 'GYP_DEFINES' : "branding=Chrome"}}) |
| 655 | 655 |
| 656 f_google_chrome_rel_linux = m_linux.ChromiumFactory( | 656 f_google_chrome_rel_linux = m_linux.ChromiumFactory( |
| 657 'google-chrome-rel-linux', | 657 'google-chrome-rel-linux', |
| 658 mode='google_chrome', | 658 mode='google_chrome', |
| 659 clobber=True, | 659 clobber=True, |
| 660 compile_timeout=2400, | 660 compile_timeout=2400, |
| 661 tests=['ui', 'unit'], | 661 tests=['ui', 'unit'], |
| 662 factory_properties={'gclient_env': { 'GYP_DEFINES' : "branding=Chrome"}}) | 662 factory_properties={'gclient_env': { 'GYP_DEFINES' : "branding=Chrome"}}) |
| 663 | 663 |
| (...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1221 c['projectName'] = ActiveMaster.project_name | 1221 c['projectName'] = ActiveMaster.project_name |
| 1222 c['projectURL'] = config.Master.project_url | 1222 c['projectURL'] = config.Master.project_url |
| 1223 | 1223 |
| 1224 # the 'buildbotURL' string should point to the location where the buildbot's | 1224 # the 'buildbotURL' string should point to the location where the buildbot's |
| 1225 # internal web server (usually the html.Waterfall page) is visible. This | 1225 # internal web server (usually the html.Waterfall page) is visible. This |
| 1226 # typically uses the port number set in the Waterfall 'status' entry, but | 1226 # typically uses the port number set in the Waterfall 'status' entry, but |
| 1227 # with an externally-visible host name which the buildbot cannot figure out | 1227 # with an externally-visible host name which the buildbot cannot figure out |
| 1228 # without some help. | 1228 # without some help. |
| 1229 | 1229 |
| 1230 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' | 1230 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' |
| OLD | NEW |