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

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

Issue 1096683002: WebRTC: Move iOS Simulator bots to client.webrtc + add trybots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased Created 5 years, 8 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 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 b80474b68bdec803ae0d83780a703c417934d705..fef61feb7f35fe93779ce10c15769781a2caeb24 100644
--- a/scripts/slave/recipe_modules/webrtc/builders.py
+++ b/scripts/slave/recipe_modules/webrtc/builders.py
@@ -691,6 +691,28 @@ BUILDERS = freeze({
'bot_type': 'builder',
'testing': {'platform': 'mac'},
},
+ 'iOS32 Simulator Debug': {
+ 'recipe_config': 'webrtc_ios',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_PLATFORM': 'ios',
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'mac'},
+ },
+ 'iOS64 Simulator Debug': {
+ 'recipe_config': 'webrtc_ios',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_PLATFORM': 'ios',
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'mac'},
+ },
'Linux32 Debug': {
'recipe_config': 'webrtc_parallel',
'chromium_config_kwargs': {
@@ -1025,28 +1047,6 @@ BUILDERS = freeze({
'bot_type': 'builder_tester',
'testing': {'platform': 'mac'},
},
- 'iOS32 Simulator Debug': {
- 'recipe_config': 'webrtc_ios',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 32,
- 'TARGET_ARCH': 'intel',
- 'TARGET_PLATFORM': 'ios',
- },
- 'bot_type': 'builder',
- 'testing': {'platform': 'mac'},
- },
- 'iOS64 Simulator Debug': {
- 'recipe_config': 'webrtc_ios',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 64,
- 'TARGET_ARCH': 'intel',
- 'TARGET_PLATFORM': 'ios',
- },
- 'bot_type': 'builder',
- 'testing': {'platform': 'mac'},
- },
'Linux Asan (parallel)': {
'recipe_config': 'webrtc_parallel_clang',
'chromium_apply_config': ['asan', 'lsan'],
@@ -1322,6 +1322,28 @@ BUILDERS = freeze({
'bot_type': 'builder',
'testing': {'platform': 'mac'},
},
+ 'ios32_simulator': {
+ 'recipe_config': 'webrtc_ios',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_PLATFORM': 'ios',
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'mac'},
+ },
+ 'ios64_simulator': {
+ 'recipe_config': 'webrtc_ios',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 64,
+ 'TARGET_ARCH': 'intel',
+ 'TARGET_PLATFORM': 'ios',
+ },
+ 'bot_type': 'builder',
+ 'testing': {'platform': 'mac'},
+ },
'linux': {
'recipe_config': 'webrtc_parallel',
'chromium_config_kwargs': {

Powered by Google App Engine
This is Rietveld 408576698