| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from master import master_utils | 5 from master import master_utils |
| 6 from master import slaves_list | 6 from master import slaves_list |
| 7 | 7 |
| 8 import config | 8 import config |
| 9 import master_site_config | 9 import master_site_config |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 import master_win_webkit_pinned_cfg | 26 import master_win_webkit_pinned_cfg |
| 27 import master_linux_webkit_latest_cfg | 27 import master_linux_webkit_latest_cfg |
| 28 import master_android_webkit_latest_cfg | 28 import master_android_webkit_latest_cfg |
| 29 import master_mac_webkit_latest_cfg | 29 import master_mac_webkit_latest_cfg |
| 30 import master_win_webkit_latest_cfg | 30 import master_win_webkit_latest_cfg |
| 31 import master_win_latest_cfg | 31 import master_win_latest_cfg |
| 32 import master_chromiumos_latest_cfg | 32 import master_chromiumos_latest_cfg |
| 33 import master_mac_latest_cfg | 33 import master_mac_latest_cfg |
| 34 import master_linux_latest_cfg | 34 import master_linux_latest_cfg |
| 35 import master_android_latest_cfg | 35 import master_android_latest_cfg |
| 36 import master_win_gpu_latest_cfg | 36 import master_gpu_latest_cfg |
| 37 import master_mac_gpu_latest_cfg | |
| 38 import master_linux_gpu_latest_cfg | |
| 39 | 37 |
| 40 master_source_cfg.Update(config, ActiveMaster, c) | 38 master_source_cfg.Update(config, ActiveMaster, c) |
| 41 master_win_webkit_pinned_cfg.Update(config, ActiveMaster, c) | 39 master_win_webkit_pinned_cfg.Update(config, ActiveMaster, c) |
| 42 master_mac_webkit_pinned_cfg.Update(config, ActiveMaster, c) | 40 master_mac_webkit_pinned_cfg.Update(config, ActiveMaster, c) |
| 43 master_linux_webkit_pinned_cfg.Update(config, ActiveMaster, c) | 41 master_linux_webkit_pinned_cfg.Update(config, ActiveMaster, c) |
| 44 master_win_webkit_latest_cfg.Update(config, ActiveMaster, c) | 42 master_win_webkit_latest_cfg.Update(config, ActiveMaster, c) |
| 45 master_mac_webkit_latest_cfg.Update(config, ActiveMaster, c) | 43 master_mac_webkit_latest_cfg.Update(config, ActiveMaster, c) |
| 46 master_linux_webkit_latest_cfg.Update(config, ActiveMaster, c) | 44 master_linux_webkit_latest_cfg.Update(config, ActiveMaster, c) |
| 47 master_android_webkit_latest_cfg.Update(config, ActiveMaster, c) | 45 master_android_webkit_latest_cfg.Update(config, ActiveMaster, c) |
| 48 master_win_latest_cfg.Update(config, ActiveMaster, c) | 46 master_win_latest_cfg.Update(config, ActiveMaster, c) |
| 49 master_mac_latest_cfg.Update(config, ActiveMaster, c) | 47 master_mac_latest_cfg.Update(config, ActiveMaster, c) |
| 50 master_linux_latest_cfg.Update(config, ActiveMaster, c) | 48 master_linux_latest_cfg.Update(config, ActiveMaster, c) |
| 51 master_chromiumos_latest_cfg.Update(config, ActiveMaster, c) | 49 master_chromiumos_latest_cfg.Update(config, ActiveMaster, c) |
| 52 master_android_latest_cfg.Update(config, ActiveMaster, c) | 50 master_android_latest_cfg.Update(config, ActiveMaster, c) |
| 53 master_win_gpu_latest_cfg.Update(config, ActiveMaster, c) | 51 master_gpu_latest_cfg.Update(config, ActiveMaster, c) |
| 54 master_mac_gpu_latest_cfg.Update(config, ActiveMaster, c) | |
| 55 master_linux_gpu_latest_cfg.Update(config, ActiveMaster, c) | |
| 56 | 52 |
| 57 # This will be enabled when the master is split. | 53 # This will be enabled when the master is split. |
| 58 if TREE_GATE_KEEPER: | 54 if TREE_GATE_KEEPER: |
| 59 import master_gatekeeper_cfg | 55 import master_gatekeeper_cfg |
| 60 master_gatekeeper_cfg.Update(config, ActiveMaster, c) | 56 master_gatekeeper_cfg.Update(config, ActiveMaster, c) |
| 61 | 57 |
| 62 c['logCompressionLimit'] = False | 58 c['logCompressionLimit'] = False |
| 63 c['projectName'] = ActiveMaster.project_name | 59 c['projectName'] = ActiveMaster.project_name |
| 64 c['projectURL'] = config.Master.project_url | 60 c['projectURL'] = config.Master.project_url |
| 65 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.webkit/' | 61 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.webkit/' |
| (...skipping 12 matching lines...) Expand all Loading... |
| 78 c['slaves'] = master_utils.AutoSetupSlaves(c['builders'], | 74 c['slaves'] = master_utils.AutoSetupSlaves(c['builders'], |
| 79 config.Master.GetBotPassword()) | 75 config.Master.GetBotPassword()) |
| 80 master_utils.VerifySetup(c, slaves) | 76 master_utils.VerifySetup(c, slaves) |
| 81 | 77 |
| 82 # Adds common status and tools to this master. | 78 # Adds common status and tools to this master. |
| 83 master_utils.AutoSetupMaster(c, ActiveMaster, | 79 master_utils.AutoSetupMaster(c, ActiveMaster, |
| 84 public_html='../master.chromium/public_html', | 80 public_html='../master.chromium/public_html', |
| 85 templates=['../master.chromium/templates'], | 81 templates=['../master.chromium/templates'], |
| 86 order_console_by_time=True, | 82 order_console_by_time=True, |
| 87 enable_http_status_push=ActiveMaster.is_production_host) | 83 enable_http_status_push=ActiveMaster.is_production_host) |
| OLD | NEW |