Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import socket | 10 import socket |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 672 clang=True, | 672 clang=True, |
| 673 goma=False, # TODO(iannucci): Make this use goma. | 673 goma=False, # TODO(iannucci): Make this use goma. |
| 674 ninja=False, # TODO(iannucci): Employ ninjas. | 674 ninja=False, # TODO(iannucci): Employ ninjas. |
| 675 ) | 675 ) |
| 676 | 676 |
| 677 | 677 |
| 678 # Windows builder | 678 # Windows builder |
| 679 win_targets = common_targets[:] | 679 win_targets = common_targets[:] |
| 680 win_tests = [ | 680 win_tests = [ |
| 681 'app_list_unittests_br', | 681 'app_list_unittests_br', |
| 682 'ash_unittests_br', | |
| 683 'aura_br', | |
| 682 'base_unittests_br', | 684 'base_unittests_br', |
| 683 'blink_platform_unittests_br', | 685 'blink_platform_unittests_br', |
| 684 'browser_tests_br', | 686 'browser_tests_br', |
| 685 'buildrunner_tests', | 687 'buildrunner_tests', |
| 686 'cacheinvalidation_br', | 688 'cacheinvalidation_br', |
| 687 'cc_unittests_br', | 689 'cc_unittests_br', |
| 688 'check_deps2git_br', | 690 'check_deps2git_br', |
| 689 'check_deps_br', | 691 'check_deps_br', |
| 690 'chrome_frame_br', | 692 'chrome_frame_br', |
| 691 'chromedriver_tests_br', | 693 'chromedriver_tests_br', |
| 692 'chromedriver2_unittests_br', | 694 'chromedriver2_unittests_br', |
| 693 'components_unittests_br', | 695 'components_unittests_br', |
| 696 'compositor_br', | |
| 694 'content_browsertests_br', | 697 'content_browsertests_br', |
| 695 'courgette_br', | 698 'courgette_br', |
| 696 'crypto_br', | 699 'crypto_br', |
| 697 'device_unittests_br', | 700 'device_unittests_br', |
| 698 'googleurl_br', | 701 'googleurl_br', |
| 699 'gpu_br', | 702 'gpu_br', |
| 700 'installer_br', | 703 'installer_br', |
| 701 'interactive_ui_tests_br', | 704 'interactive_ui_tests_br', |
| 702 'jingle_br', | 705 'jingle_br', |
| 706 'keyboard_unittests', | |
| 703 'media_br', | 707 'media_br', |
| 704 'nacl_integration_br', | 708 'nacl_integration_br', |
| 705 'net_br', | 709 'net_br', |
| 706 'ppapi_unittests_br', | 710 'ppapi_unittests_br', |
| 707 'printing_br', | 711 'printing_br', |
| 708 'remoting_br', | 712 'remoting_br', |
| 709 'sync_integration_br', | 713 'sync_integration_br', |
| 710 'telemetry_unittests_br', | 714 'telemetry_unittests_br', |
| 711 'unit_br', | 715 'unit_br', |
| 716 'views_br', | |
|
ghost stip (do not use)
2013/11/09 01:03:16
remove this line. views_br is already added via un
| |
| 712 'webkit_compositor_bindings_unittests_br', | 717 'webkit_compositor_bindings_unittests_br', |
| 713 'webkit_lint_br', | 718 'webkit_lint_br', |
| 714 'webkit_unit_br', | 719 'webkit_unit_br', |
| 715 'weborigin_unittests_br', | 720 'weborigin_unittests_br', |
| 716 'wtf_unittests_br', | 721 'wtf_unittests_br', |
| 717 ] | 722 ] |
| 718 | 723 |
| 719 b_win = CreateBuilder( | 724 b_win = CreateBuilder( |
| 720 target='Debug', | 725 target='Debug', |
| 721 platform='win32', | 726 platform='win32', |
| (...skipping 1681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2403 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2408 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2404 | 2409 |
| 2405 # Buildbot master url: | 2410 # Buildbot master url: |
| 2406 if ActiveMaster.is_production_host: | 2411 if ActiveMaster.is_production_host: |
| 2407 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2412 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 2408 else: | 2413 else: |
| 2409 c['buildbotURL'] = 'http://%s:%d/' % ( | 2414 c['buildbotURL'] = 'http://%s:%d/' % ( |
| 2410 socket.getfqdn(), ActiveMaster.master_port) | 2415 socket.getfqdn(), ActiveMaster.master_port) |
| 2411 | 2416 |
| 2412 # vi: set ts=4 sts=2 sw=2 et: | 2417 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |