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

Unified Diff: scripts/slave/recipes/webrtc/more_configs.py

Issue 2457423002: WebRTC: Add Android more configs bots. (Closed)
Patch Set: . Created 4 years, 1 month 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/recipes/webrtc/more_configs.py
diff --git a/scripts/slave/recipes/webrtc/more_configs.py b/scripts/slave/recipes/webrtc/more_configs.py
index 7d57b4ef933f232b647de359e4aeea28705213f0..01e786e1b764a50db08b7e150c4d7080f5e6e9d1 100644
--- a/scripts/slave/recipes/webrtc/more_configs.py
+++ b/scripts/slave/recipes/webrtc/more_configs.py
@@ -17,6 +17,11 @@ RECIPE_CONFIGS = freeze({
'chromium_config': 'webrtc_minimal',
'gclient_config': 'webrtc',
},
+ 'webrtc_android_minimal': {
+ 'chromium_config': 'android',
+ 'gclient_config': 'webrtc',
+ 'gclient_apply_config': ['android'],
+ },
})
BUILDERS = freeze({
@@ -31,6 +36,17 @@ BUILDERS = freeze({
'bot_type': 'builder',
'testing': {'platform': 'linux'},
},
+ 'Android32 (more configs)': {
+ 'recipe_config': 'webrtc_android_minimal',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'arm',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'linux'},
+ },
},
},
'tryserver.webrtc': {
@@ -44,6 +60,17 @@ BUILDERS = freeze({
'bot_type': 'builder',
'testing': {'platform': 'linux'},
},
+ 'android_more_configs': {
+ 'recipe_config': 'webrtc_android_minimal',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'arm',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'linux'},
+ },
},
},
})

Powered by Google App Engine
This is Rietveld 408576698