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

Unified Diff: scripts/slave/recipe_modules/webrtc/builders.py

Issue 1525163005: WebRTC: Move Win Clang commit bots to client.webrtc master. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/webrtc/builders.py
diff --git a/scripts/slave/recipe_modules/webrtc/builders.py b/scripts/slave/recipe_modules/webrtc/builders.py
index d1ba7fe48de6eb261f3c624d0096bc3a4dce8af9..a890dab2aeb766d6bf6d909434ad92d82ee37b33 100644
--- a/scripts/slave/recipe_modules/webrtc/builders.py
+++ b/scripts/slave/recipe_modules/webrtc/builders.py
@@ -119,6 +119,42 @@ BUILDERS = freeze({
'bot_type': 'builder',
'testing': {'platform': 'win'},
},
+ 'Win32 Debug (Clang)': {
+ 'recipe_config': 'webrtc_clang',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'win'},
+ },
+ 'Win32 Release (Clang)': {
+ 'recipe_config': 'webrtc_clang',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'win'},
+ },
+ 'Win64 Debug (Clang)': {
+ 'recipe_config': 'webrtc_clang',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'win'},
+ },
+ 'Win64 Release (Clang)': {
+ 'recipe_config': 'webrtc_clang',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'win'},
+ },
'Win32 Release [large tests]': {
'recipe_config': 'webrtc_baremetal',
'chromium_config_kwargs': {
@@ -614,42 +650,6 @@ BUILDERS = freeze({
'use_isolate': True,
'enable_swarming': True,
},
- 'Win32 Debug (Clang)': {
- 'recipe_config': 'webrtc_clang',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder',
- 'testing': {'platform': 'win'},
- },
- 'Win32 Release (Clang)': {
- 'recipe_config': 'webrtc_clang',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder',
- 'testing': {'platform': 'win'},
- },
- 'Win64 Debug (Clang)': {
- 'recipe_config': 'webrtc_clang',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'testing': {'platform': 'win'},
- },
- 'Win64 Release (Clang)': {
- 'recipe_config': 'webrtc_clang',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'testing': {'platform': 'win'},
- },
'Mac64 Release (swarming)': {
'recipe_config': 'webrtc',
'chromium_config_kwargs': {

Powered by Google App Engine
This is Rietveld 408576698