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', | |
|
Paweł Hajdan Jr.
2013/11/07 22:22:16
I think this needs buildrunner (_br) here.
I noti
ghost stip (do not use)
2013/11/07 22:35:06
it doesn't need _br, as it was added as a native b
jam
2013/11/08 01:05:27
(not doing anything here per stip's comment)
| |
| 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', | |
| 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 949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1671 # CreateBuilder() adds "fastbuild=1" for the other 2 clang bots. | 1676 # CreateBuilder() adds "fastbuild=1" for the other 2 clang bots. |
| 1672 'gclient_env': { | 1677 'gclient_env': { |
| 1673 'GYP_GENERATORS': 'ninja', | 1678 'GYP_GENERATORS': 'ninja', |
| 1674 'GYP_DEFINES': ('chromeos=1' | 1679 'GYP_DEFINES': ('chromeos=1' |
| 1675 ' clang=1 clang_use_chrome_plugins=1' | 1680 ' clang=1 clang_use_chrome_plugins=1' |
| 1676 ' fastbuild=1' | 1681 ' fastbuild=1' |
| 1677 ' ffmpeg_branding=ChromeOS proprietary_codecs=1' | 1682 ' ffmpeg_branding=ChromeOS proprietary_codecs=1' |
| 1678 ' component=shared_library')}}) | 1683 ' component=shared_library')}}) |
| 1679 } | 1684 } |
| 1680 | 1685 |
| 1681 b_win7_aura = CreateBuilder( | |
| 1682 platform='win32', | |
| 1683 target='Release', | |
| 1684 builder_name='win7_aura', | |
| 1685 options=['aura_builder'], | |
| 1686 tests=[ | |
| 1687 'app_list_unittests_br', | |
| 1688 'ash_unittests_br', | |
| 1689 'aura_br', | |
| 1690 'browser_tests_br', | |
| 1691 'buildrunner_tests', | |
| 1692 'chrome_frame_net_tests_br', | |
| 1693 'chrome_frame_tests_br', | |
| 1694 'chrome_frame_unittests_br', | |
| 1695 'compositor_br', | |
| 1696 'content_browsertests_br', | |
| 1697 'content_unittests_br', | |
| 1698 'device_unittests_br', | |
| 1699 'interactive_ui_tests_br', | |
| 1700 'keyboard_unittests', | |
| 1701 'unit_unit_br', | |
| 1702 'views_br', | |
| 1703 ], | |
| 1704 goma=True, | |
| 1705 factory_properties={ | |
| 1706 'gclient_env': { | |
| 1707 'GYP_DEFINES': 'use_aura=1', | |
| 1708 }, | |
| 1709 }) | |
| 1710 | |
| 1711 # this matches the bot on the main waterfall soon | 1686 # this matches the bot on the main waterfall soon |
| 1712 b_win8_aura = CreateBuilder( | 1687 b_win8_aura = CreateBuilder( |
| 1713 platform='win32', | 1688 platform='win32', |
| 1714 target='Release', | 1689 target='Release', |
| 1715 builder_name='win8_aura', | 1690 builder_name='win8_aura', |
| 1716 options=['aura_builder'], | 1691 options=['aura_builder'], |
| 1717 tests=[ | 1692 tests=[ |
| 1718 'ash_unittests_br', | 1693 'ash_unittests_br', |
| 1719 'aura_br', | 1694 'aura_br', |
| 1720 'buildrunner_tests', | 1695 'buildrunner_tests', |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2202 b_linux_chromeos_valgrind, | 2177 b_linux_chromeos_valgrind, |
| 2203 b_tsan_linux, b_tsan_win, b_drmemory_win, | 2178 b_tsan_linux, b_tsan_win, b_drmemory_win, |
| 2204 b_linux_layout, b_mac_layout, b_win_layout, | 2179 b_linux_layout, b_mac_layout, b_win_layout, |
| 2205 b_linux_layout_rel, b_mac_layout_rel, b_win_layout_rel, | 2180 b_linux_layout_rel, b_mac_layout_rel, b_win_layout_rel, |
| 2206 b_linux_layout_asan, b_linux_layout_rel_32, | 2181 b_linux_layout_asan, b_linux_layout_rel_32, |
| 2207 b_mac_layout_rel_lion, b_mac_layout_rel_mountainlion, | 2182 b_mac_layout_rel_lion, b_mac_layout_rel_mountainlion, |
| 2208 b_coverage_linux, | 2183 b_coverage_linux, |
| 2209 b_win_chrome_frame, | 2184 b_win_chrome_frame, |
| 2210 ] + b_swarms + [ | 2185 ] + b_swarms + [ |
| 2211 b_linux_chromeos_clang, | 2186 b_linux_chromeos_clang, |
| 2212 b_linux_futura, b_linux_aura, b_win7_aura, b_win8_aura, | 2187 b_linux_futura, b_linux_aura, b_win8_aura, |
| 2213 b_linux_asan, b_linux_browser_asan, b_linux_clang_tsan, | 2188 b_linux_asan, b_linux_browser_asan, b_linux_clang_tsan, |
| 2214 b_linux_chromeos_asan, | 2189 b_linux_chromeos_asan, |
| 2215 b_mac_asan, b_mac_asan_64, b_mac_xcodebuild, | 2190 b_mac_asan, b_mac_asan_64, b_mac_xcodebuild, |
| 2216 b_linux_heapcheck, | 2191 b_linux_heapcheck, |
| 2217 b_linux_redux, | 2192 b_linux_redux, |
| 2218 b_cros_pfq_x86, b_cros_pfq_amd64, b_cros_pfq_daisy, | 2193 b_cros_pfq_x86, b_cros_pfq_amd64, b_cros_pfq_daisy, |
| 2219 b_linux_nacl_sdk, b_win_nacl_sdk, b_mac_nacl_sdk, | 2194 b_linux_nacl_sdk, b_win_nacl_sdk, b_mac_nacl_sdk, |
| 2220 b_linux_nacl_sdk_build, b_win_nacl_sdk_build, b_mac_nacl_sdk_build, | 2195 b_linux_nacl_sdk_build, b_win_nacl_sdk_build, b_mac_nacl_sdk_build, |
| 2221 b_valgrind_mac_alt, b_mac_layout_alt, b_mac_layout_rel_alt, | 2196 b_valgrind_mac_alt, b_mac_layout_alt, b_mac_layout_rel_alt, |
| 2222 b_mac_nacl_sdk_alt, | 2197 b_mac_nacl_sdk_alt, |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2403 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2378 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2404 | 2379 |
| 2405 # Buildbot master url: | 2380 # Buildbot master url: |
| 2406 if ActiveMaster.is_production_host: | 2381 if ActiveMaster.is_production_host: |
| 2407 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 2382 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
| 2408 else: | 2383 else: |
| 2409 c['buildbotURL'] = 'http://%s:%d/' % ( | 2384 c['buildbotURL'] = 'http://%s:%d/' % ( |
| 2410 socket.getfqdn(), ActiveMaster.master_port) | 2385 socket.getfqdn(), ActiveMaster.master_port) |
| 2411 | 2386 |
| 2412 # vi: set ts=4 sts=2 sw=2 et: | 2387 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |