Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: scripts/slave/recipe_modules/v8/builders.py

Issue 1412353002: WebRTC: Add Linux GCC bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rename to gcc and add compiler group Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # Contains the bulk of the V8 builder configurations so they can be reused 5 # Contains the bulk of the V8 builder configurations so they can be reused
6 # from multiple recipes. 6 # from multiple recipes.
7 7
8 from recipe_engine.types import freeze 8 from recipe_engine.types import freeze
9 9
10 10
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1202 'BUILD_CONFIG': 'Debug', 1202 'BUILD_CONFIG': 'Debug',
1203 'TARGET_BITS': 64, 1203 'TARGET_BITS': 64,
1204 }, 1204 },
1205 'bot_type': 'tester', 1205 'bot_type': 'tester',
1206 'parent_buildername': 'V8 Linux64 - custom snapshot - debug builder', 1206 'parent_buildername': 'V8 Linux64 - custom snapshot - debug builder',
1207 'build_gs_archive': 'linux64_custom_snapshot_dbg_archive', 1207 'build_gs_archive': 'linux64_custom_snapshot_dbg_archive',
1208 'tests': [Mjsunit], 1208 'tests': [Mjsunit],
1209 'testing': {'platform': 'linux'}, 1209 'testing': {'platform': 'linux'},
1210 }, 1210 },
1211 'V8 Linux gcc 4.8': { 1211 'V8 Linux gcc 4.8': {
1212 'chromium_apply_config': ['make', 'no_clang'], 1212 'chromium_apply_config': ['make', 'gcc'],
1213 'v8_config_kwargs': { 1213 'v8_config_kwargs': {
1214 'BUILD_CONFIG': 'Release', 1214 'BUILD_CONFIG': 'Release',
1215 'TARGET_BITS': 32, 1215 'TARGET_BITS': 32,
1216 }, 1216 },
1217 'bot_type': 'builder_tester', 1217 'bot_type': 'builder_tester',
1218 'tests': [V8Testing], 1218 'tests': [V8Testing],
1219 'testing': {'platform': 'linux'}, 1219 'testing': {'platform': 'linux'},
1220 }, 1220 },
1221 'V8 Linux64 ASAN': { 1221 'V8 Linux64 ASAN': {
1222 'chromium_apply_config': ['v8_ninja', 'clang', 'asan', 'goma'], 1222 'chromium_apply_config': ['v8_ninja', 'clang', 'asan', 'goma'],
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1594 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'no_snapshot'], 1594 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'no_snapshot'],
1595 'v8_config_kwargs': { 1595 'v8_config_kwargs': {
1596 'BUILD_CONFIG': 'Debug', 1596 'BUILD_CONFIG': 'Debug',
1597 'TARGET_BITS': 32, 1597 'TARGET_BITS': 32,
1598 }, 1598 },
1599 'bot_type': 'builder_tester', 1599 'bot_type': 'builder_tester',
1600 'tests': [V8Testing], 1600 'tests': [V8Testing],
1601 'testing': {'platform': 'linux'}, 1601 'testing': {'platform': 'linux'},
1602 }, 1602 },
1603 'v8_linux_gcc_compile_rel': { 1603 'v8_linux_gcc_compile_rel': {
1604 'chromium_apply_config': ['no_dcheck', 'no_clang'], 1604 'chromium_apply_config': ['no_dcheck', 'gcc'],
1605 'v8_config_kwargs': { 1605 'v8_config_kwargs': {
1606 'BUILD_CONFIG': 'Release', 1606 'BUILD_CONFIG': 'Release',
1607 'TARGET_BITS': 32, 1607 'TARGET_BITS': 32,
1608 }, 1608 },
1609 'bot_type': 'builder_tester', 1609 'bot_type': 'builder_tester',
1610 'testing': {'platform': 'linux'}, 1610 'testing': {'platform': 'linux'},
1611 }, 1611 },
1612 'v8_linux_gcc_rel': { 1612 'v8_linux_gcc_rel': {
1613 'chromium_apply_config': ['no_dcheck', 'no_clang'], 1613 'chromium_apply_config': ['no_dcheck', 'gcc'],
1614 'v8_config_kwargs': { 1614 'v8_config_kwargs': {
1615 'BUILD_CONFIG': 'Release', 1615 'BUILD_CONFIG': 'Release',
1616 'TARGET_BITS': 32, 1616 'TARGET_BITS': 32,
1617 }, 1617 },
1618 'bot_type': 'builder_tester', 1618 'bot_type': 'builder_tester',
1619 'tests': [V8Testing], 1619 'tests': [V8Testing],
1620 'testing': {'platform': 'linux'}, 1620 'testing': {'platform': 'linux'},
1621 }, 1621 },
1622 'v8_linux64_rel': { 1622 'v8_linux64_rel': {
1623 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], 1623 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'],
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
2122 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2122 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2123 2123
2124 BUILDERS = freeze(BUILDERS) 2124 BUILDERS = freeze(BUILDERS)
2125 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2125 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2126 2126
2127 def iter_builders(): 2127 def iter_builders():
2128 for mastername, master_config in BUILDERS.iteritems(): 2128 for mastername, master_config in BUILDERS.iteritems():
2129 builders = master_config['builders'] 2129 builders = master_config['builders']
2130 for buildername, bot_config in builders.iteritems(): 2130 for buildername, bot_config in builders.iteritems():
2131 yield mastername, builders, buildername, bot_config 2131 yield mastername, builders, buildername, bot_config
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium/config.py ('k') | scripts/slave/recipe_modules/v8/chromium_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698