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 # These modules come from scripts, which must be in the PYTHONPATH. | 10 # These modules come from scripts, which must be in the PYTHONPATH. |
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 options=['--compiler=goma-clang'], | 718 options=['--compiler=goma-clang'], |
719 slavebuilddir='mac') | 719 slavebuilddir='mac') |
720 | 720 |
721 b_win_sync = CreateBuilder( | 721 b_win_sync = CreateBuilder( |
722 platform='win32', | 722 platform='win32', |
723 target='Debug', | 723 target='Debug', |
724 tests=['sync_integration'], | 724 tests=['sync_integration'], |
725 builder_name='win_sync', | 725 builder_name='win_sync', |
726 slavebuilddir='win') | 726 slavebuilddir='win') |
727 | 727 |
| 728 # Chrome Frame builder |
| 729 b_win_chrome_frame = CreateBuilder( |
| 730 platform='win32', |
| 731 target='Debug', |
| 732 tests=['chrome_frame_tests'], |
| 733 builder_name='win_cf', |
| 734 slavebuilddir='win') |
| 735 |
728 # Clang builders | 736 # Clang builders |
729 b_linux_clang = CreateBuilder( | 737 b_linux_clang = CreateBuilder( |
730 platform='linux', | 738 platform='linux', |
731 target='Debug', | 739 target='Debug', |
732 options=['--build-tool=make', '--compiler=goma-clang'], | 740 options=['--build-tool=make', '--compiler=goma-clang'], |
733 tests=[], | 741 tests=[], |
734 extra_gyp_defines='clang=1 clang_use_chrome_plugins=1', | 742 extra_gyp_defines='clang=1 clang_use_chrome_plugins=1', |
735 builder_name='linux_clang') | 743 builder_name='linux_clang') |
736 | 744 |
737 b_linux_clang_no_goma = CreateBuilder( | 745 b_linux_clang_no_goma = CreateBuilder( |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
990 b_linux, b_mac, b_win, b_android, | 998 b_linux, b_mac, b_win, b_android, |
991 b_win_vs2010_rel, b_win_vs2010, | 999 b_win_vs2010_rel, b_win_vs2010, |
992 b_chromium_chromiumos, | 1000 b_chromium_chromiumos, |
993 b_valgrind_linux, b_valgrind_mac, | 1001 b_valgrind_linux, b_valgrind_mac, |
994 b_chromium_chromiumos_valgrind, | 1002 b_chromium_chromiumos_valgrind, |
995 b_tsan_linux, b_drmemory_win, | 1003 b_tsan_linux, b_drmemory_win, |
996 b_linux_layout, b_mac_layout, b_win_layout, | 1004 b_linux_layout, b_mac_layout, b_win_layout, |
997 b_linux_layout_rel, b_mac_layout_rel, b_win_layout_rel, | 1005 b_linux_layout_rel, b_mac_layout_rel, b_win_layout_rel, |
998 b_coverage_linux, | 1006 b_coverage_linux, |
999 b_linux_sync, b_mac_sync, b_win_sync, | 1007 b_linux_sync, b_mac_sync, b_win_sync, |
| 1008 b_win_chrome_frame, |
1000 b_mac_no_goma, b_linux_clang_no_goma, | 1009 b_mac_no_goma, b_linux_clang_no_goma, |
1001 b_linux_chromeos_clang, | 1010 b_linux_chromeos_clang, |
1002 b_win_shared, | 1011 b_win_shared, |
1003 b_linux_shared, | 1012 b_linux_shared, |
1004 b_win_aura, b_linux_chromeos_aura, | 1013 b_win_aura, b_linux_chromeos_aura, |
1005 b_linux_asan, | 1014 b_linux_asan, |
1006 b_linux_redux, | 1015 b_linux_redux, |
1007 b_cros_pfq_x86, b_cros_pfq_aura, b_cros_pfq_arm, b_cros_pfq_tegra2, | 1016 b_cros_pfq_x86, b_cros_pfq_aura, b_cros_pfq_arm, b_cros_pfq_tegra2, |
1008 ] | 1017 ] |
1009 | 1018 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1130 ####### PROJECT IDENTITY | 1139 ####### PROJECT IDENTITY |
1131 | 1140 |
1132 # The 'projectURL' string will be used to provide a link | 1141 # The 'projectURL' string will be used to provide a link |
1133 # from buildbot HTML pages to your project's home page. | 1142 # from buildbot HTML pages to your project's home page. |
1134 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1143 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
1135 | 1144 |
1136 # Buildbot master url: | 1145 # Buildbot master url: |
1137 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' | 1146 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.chromium/' |
1138 | 1147 |
1139 # vi: set ts=4 sts=2 sw=2 et: | 1148 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |