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 buildbot.changes import svnpoller | 5 from buildbot.changes import svnpoller |
6 from buildbot.scheduler import Triggerable | 6 from buildbot.scheduler import Triggerable |
7 from buildbot.scheduler import Scheduler | 7 from buildbot.scheduler import Scheduler |
8 | 8 |
9 from common import chromium_utils | 9 from common import chromium_utils |
10 | 10 |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 | 558 |
559 # Tests that are single-machine shard-safe. | 559 # Tests that are single-machine shard-safe. |
560 # These have never been tested with Valgrind. | 560 # These have never been tested with Valgrind. |
561 sharded_tests = [ | 561 sharded_tests = [ |
562 'aura_unittests', | 562 'aura_unittests', |
563 'base_unittests', | 563 'base_unittests', |
564 'browser_tests', | 564 'browser_tests', |
565 'cacheinvalidation_unittests', | 565 'cacheinvalidation_unittests', |
566 'cc_unittests', | 566 'cc_unittests', |
567 'chromedriver_tests', | 567 'chromedriver_tests', |
| 568 'chromedriver_unittests', |
568 'chromedriver2_unittests', | 569 'chromedriver2_unittests', |
569 'components_unittests', | 570 'components_unittests', |
570 'content_browsertests', | 571 'content_browsertests', |
571 'content_unittests', | 572 'content_unittests', |
572 'crypto_unittests', | 573 'crypto_unittests', |
573 'device_unittests', | 574 'device_unittests', |
574 'events_unittests', | 575 'events_unittests', |
575 'gpu_unittests', | 576 'gpu_unittests', |
576 'jingle_unittests', | 577 'jingle_unittests', |
577 'media_unittests', | 578 'media_unittests', |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
956 | 957 |
957 # Adds common status and tools to this master. | 958 # Adds common status and tools to this master. |
958 master_utils.AutoSetupMaster(c, ActiveMaster, | 959 master_utils.AutoSetupMaster(c, ActiveMaster, |
959 public_html='../master.chromium/public_html', | 960 public_html='../master.chromium/public_html', |
960 templates=['../master.chromium/templates'], | 961 templates=['../master.chromium/templates'], |
961 enable_http_status_push=ActiveMaster.is_production_host) | 962 enable_http_status_push=ActiveMaster.is_production_host) |
962 | 963 |
963 if ActiveMaster.is_production_host: | 964 if ActiveMaster.is_production_host: |
964 import notifier_cfg | 965 import notifier_cfg |
965 notifier_cfg.Update(config, ActiveMaster, c) | 966 notifier_cfg.Update(config, ActiveMaster, c) |
OLD | NEW |