| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 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 from buildbot.changes import svnpoller | 8 from buildbot.changes import svnpoller |
| 9 from buildbot.scheduler import Dependent | 9 from buildbot.scheduler import Dependent |
| 10 from buildbot.scheduler import Nightly | 10 from buildbot.scheduler import Nightly |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 'trigger': 'cr_android_rel', | 522 'trigger': 'cr_android_rel', |
| 523 'safesync_url': 'http://chromium-status.appspot.com/lkgr', | 523 'safesync_url': 'http://chromium-status.appspot.com/lkgr', |
| 524 }) | 524 }) |
| 525 | 525 |
| 526 cross_platform = ['page_cycler_bloat', 'page_cycler_moz', 'page_cycler_morejs', | 526 cross_platform = ['page_cycler_bloat', 'page_cycler_moz', 'page_cycler_morejs', |
| 527 'page_cycler_intl_ar_fa_he', 'page_cycler_intl_es_fr_pt-BR', | 527 'page_cycler_intl_ar_fa_he', 'page_cycler_intl_es_fr_pt-BR', |
| 528 'page_cycler_intl_hi_ru', 'page_cycler_intl_ja_zh', | 528 'page_cycler_intl_hi_ru', 'page_cycler_intl_ja_zh', |
| 529 'page_cycler_intl_ko_th_vi', 'page_cycler_typical_25', | 529 'page_cycler_intl_ko_th_vi', 'page_cycler_typical_25', |
| 530 'page_cycler_dhtml', 'dom_perf', 'sunspider', 'octane', | 530 'page_cycler_dhtml', 'dom_perf', 'sunspider', 'octane', |
| 531 'dromaeo', 'kraken', 'blink_perf'] | 531 'dromaeo', 'kraken', 'blink_perf'] |
| 532 desktop = ['tab_switching_top_10'] | 532 desktop = ['memory', 'tab_switching_top_10'] |
| 533 | 533 |
| 534 perf_tests = cross_platform + desktop | 534 perf_tests = cross_platform + desktop |
| 535 | 535 |
| 536 f_chromium_rel_perf_win7_dual_v8 = win().ChromiumV8LatestFactory( | 536 f_chromium_rel_perf_win7_dual_v8 = win().ChromiumV8LatestFactory( |
| 537 project='all.sln;chromium_builder', | 537 project='all.sln;chromium_builder', |
| 538 tests=perf_tests, | 538 tests=perf_tests, |
| 539 compile_timeout=7200, | 539 compile_timeout=7200, |
| 540 factory_properties={ | 540 factory_properties={ |
| 541 'perf_id': 'chromium-rel-win7-dual-v8', | 541 'perf_id': 'chromium-rel-win7-dual-v8', |
| 542 'gclient_env': {'GYP_DEFINES': 'fastbuild=1'}, | 542 'gclient_env': {'GYP_DEFINES': 'fastbuild=1'}, |
| (...skipping 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1746 import mail_notifier_cfg | 1746 import mail_notifier_cfg |
| 1747 mail_notifier_cfg.Update(config, ActiveMaster, c) | 1747 mail_notifier_cfg.Update(config, ActiveMaster, c) |
| 1748 | 1748 |
| 1749 # Adjust the buildCaches to be 3x the number of slaves per builder. | 1749 # Adjust the buildCaches to be 3x the number of slaves per builder. |
| 1750 c['autoBuildCacheRatio'] = 3 | 1750 c['autoBuildCacheRatio'] = 3 |
| 1751 | 1751 |
| 1752 ####### PROJECT IDENTITY | 1752 ####### PROJECT IDENTITY |
| 1753 | 1753 |
| 1754 c['projectName'] = ActiveMaster.project_name | 1754 c['projectName'] = ActiveMaster.project_name |
| 1755 c['projectURL'] = config.Master.project_url | 1755 c['projectURL'] = config.Master.project_url |
| OLD | NEW |