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

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

Issue 1388333002: WebRTC: Add Linux32 ARM builder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: 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 | Annotate | Revision Log
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 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 'recipe_config': 'webrtc', 1067 'recipe_config': 'webrtc',
1068 'chromium_config_kwargs': { 1068 'chromium_config_kwargs': {
1069 'BUILD_CONFIG': 'Release', 1069 'BUILD_CONFIG': 'Release',
1070 'TARGET_BITS': 64, 1070 'TARGET_BITS': 64,
1071 }, 1071 },
1072 'bot_type': 'builder_tester', 1072 'bot_type': 'builder_tester',
1073 'testing': {'platform': 'linux'}, 1073 'testing': {'platform': 'linux'},
1074 'use_isolate': True, 1074 'use_isolate': True,
1075 'enable_swarming': True, 1075 'enable_swarming': True,
1076 }, 1076 },
1077 'Linux32 ARM': {
1078 'recipe_config': 'webrtc',
1079 'chromium_config_kwargs': {
1080 'BUILD_CONFIG': 'Release',
1081 'TARGET_ARCH': 'arm',
1082 'TARGET_BITS': 32,
1083 },
1084 'bot_type': 'builder',
1085 'testing': {'platform': 'linux'},
1086 },
1077 'Android Builder (dbg)': { 1087 'Android Builder (dbg)': {
1078 'recipe_config': 'webrtc_android', 1088 'recipe_config': 'webrtc_android',
1079 'chromium_config_kwargs': { 1089 'chromium_config_kwargs': {
1080 'BUILD_CONFIG': 'Debug', 1090 'BUILD_CONFIG': 'Debug',
1081 'TARGET_PLATFORM': 'android', 1091 'TARGET_PLATFORM': 'android',
1082 'TARGET_ARCH': 'arm', 1092 'TARGET_ARCH': 'arm',
1083 'TARGET_BITS': 32, 1093 'TARGET_BITS': 32,
1084 }, 1094 },
1085 'bot_type': 'builder', 1095 'bot_type': 'builder',
1086 'build_gs_archive': 'fyi_android_apk_dbg_archive', 1096 'build_gs_archive': 'fyi_android_apk_dbg_archive',
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 'TARGET_BITS': 32, 1651 'TARGET_BITS': 32,
1642 }, 1652 },
1643 'chromium_apply_config': ['webrtc_gn'], 1653 'chromium_apply_config': ['webrtc_gn'],
1644 'bot_type': 'builder', 1654 'bot_type': 'builder',
1645 'testing': {'platform': 'linux'}, 1655 'testing': {'platform': 'linux'},
1646 }, 1656 },
1647 }, 1657 },
1648 }, 1658 },
1649 }) 1659 })
1650 1660
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698