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

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

Issue 1412353002: WebRTC: Add Linux GCC bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Expectation 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 WebRTC builder configurations so they can be reused 5 # Contains the bulk of the WebRTC 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 RECIPE_CONFIGS = freeze({ 10 RECIPE_CONFIGS = freeze({
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 'chromium_config_kwargs': { 1075 'chromium_config_kwargs': {
1076 'BUILD_CONFIG': 'Release', 1076 'BUILD_CONFIG': 'Release',
1077 'TARGET_BITS': 64, 1077 'TARGET_BITS': 64,
1078 }, 1078 },
1079 'bot_type': 'builder_tester', 1079 'bot_type': 'builder_tester',
1080 'testing': {'platform': 'linux'}, 1080 'testing': {'platform': 'linux'},
1081 'use_isolate': True, 1081 'use_isolate': True,
1082 'enable_swarming': True, 1082 'enable_swarming': True,
1083 }, 1083 },
1084 'Linux32 ARM': { 1084 'Linux32 ARM': {
1085 'recipe_config': 'webrtc', 1085 'recipe_config': 'webrtc_compile',
1086 'chromium_config_kwargs': { 1086 'chromium_config_kwargs': {
1087 'BUILD_CONFIG': 'Release', 1087 'BUILD_CONFIG': 'Release',
1088 'TARGET_ARCH': 'arm', 1088 'TARGET_ARCH': 'arm',
1089 'TARGET_BITS': 32, 1089 'TARGET_BITS': 32,
1090 }, 1090 },
1091 'bot_type': 'builder', 1091 'bot_type': 'builder',
1092 'testing': {'platform': 'linux'}, 1092 'testing': {'platform': 'linux'},
1093 }, 1093 },
1094 'Linux64 GCC': {
1095 'recipe_config': 'webrtc_compile',
1096 'chromium_apply_config': ['no_clang'],
1097 'chromium_config_kwargs': {
1098 'BUILD_CONFIG': 'Release',
1099 'TARGET_BITS': 64,
1100 },
1101 'bot_type': 'builder',
1102 'testing': {'platform': 'linux'},
1103 },
1094 'Android32 ASan (L Nexus6)': { 1104 'Android32 ASan (L Nexus6)': {
1095 'recipe_config': 'webrtc_android_asan', 1105 'recipe_config': 'webrtc_android_asan',
1096 'chromium_config_kwargs': { 1106 'chromium_config_kwargs': {
1097 'BUILD_CONFIG': 'Release', 1107 'BUILD_CONFIG': 'Release',
1098 'TARGET_PLATFORM': 'android', 1108 'TARGET_PLATFORM': 'android',
1099 'TARGET_ARCH': 'arm', 1109 'TARGET_ARCH': 'arm',
1100 'TARGET_BITS': 32, 1110 'TARGET_BITS': 32,
1101 }, 1111 },
1102 'bot_type': 'builder_tester', 1112 'bot_type': 'builder_tester',
1103 'testing': {'platform': 'linux'}, 1113 'testing': {'platform': 'linux'},
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
1669 'TARGET_BITS': 32, 1679 'TARGET_BITS': 32,
1670 }, 1680 },
1671 'chromium_apply_config': ['webrtc_gn'], 1681 'chromium_apply_config': ['webrtc_gn'],
1672 'bot_type': 'builder', 1682 'bot_type': 'builder',
1673 'testing': {'platform': 'linux'}, 1683 'testing': {'platform': 'linux'},
1674 }, 1684 },
1675 }, 1685 },
1676 }, 1686 },
1677 }) 1687 })
1678 1688
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698