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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_mac.py

Issue 2098943002: Rename Mac/Win GN builders to GYP builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fix masters_recipes_test.py to handle deprecated builders Created 4 years, 6 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 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-mac-archive', 9 'build_gs_bucket': 'chromium-mac-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 steps.generate_script, 95 steps.generate_script,
96 steps.generate_isolated_script, 96 steps.generate_isolated_script,
97 ], 97 ],
98 'bot_type': 'tester', 98 'bot_type': 'tester',
99 'parent_buildername': 'Mac Builder', 99 'parent_buildername': 'Mac Builder',
100 'testing': { 100 'testing': {
101 'platform': 'mac', 101 'platform': 'mac',
102 }, 102 },
103 }, 103 },
104 'Mac GN': { 104 'Mac GN': {
105 # TODO(dpranke): Remove after builders have restarted.
105 'chromium_config': 'chromium', 106 'chromium_config': 'chromium',
106 'chromium_apply_config': ['mb', 'force_mac_toolchain'], 107 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
107 'gclient_config': 'chromium', 108 'gclient_config': 'chromium',
109 'chromium_config_kwargs': {
110 'BUILD_CONFIG': 'Release',
111 'TARGET_PLATFORM': 'mac',
112 },
113 'test_generators': [
114 steps.generate_gtest,
115 steps.generate_script,
116 steps.generate_isolated_script,
117 ],
118 'enable_swarming': True,
119 'testing': {
120 'platform': 'mac',
121 },
122 },
123 'Mac GYP': {
124 'chromium_config': 'chromium',
125 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
126 'gclient_config': 'chromium',
108 'chromium_config_kwargs': { 127 'chromium_config_kwargs': {
109 'BUILD_CONFIG': 'Release', 128 'BUILD_CONFIG': 'Release',
110 'TARGET_PLATFORM': 'mac', 129 'TARGET_PLATFORM': 'mac',
111 }, 130 },
112 'test_generators': [ 131 'test_generators': [
113 steps.generate_gtest, 132 steps.generate_gtest,
114 steps.generate_script, 133 steps.generate_script,
115 steps.generate_isolated_script, 134 steps.generate_isolated_script,
116 ], 135 ],
117 'enable_swarming': True, 136 'enable_swarming': True,
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 'parent_buildername': 'Mac Builder (dbg)', 177 'parent_buildername': 'Mac Builder (dbg)',
159 'testing': { 178 'testing': {
160 'platform': 'mac', 179 'platform': 'mac',
161 }, 180 },
162 'enable_swarming': True, 181 'enable_swarming': True,
163 'swarming_dimensions': { 182 'swarming_dimensions': {
164 'os': 'Mac-10.9', 183 'os': 'Mac-10.9',
165 }, 184 },
166 }, 185 },
167 'Mac GN (dbg)': { 186 'Mac GN (dbg)': {
187 # TODO(dpranke): Remove after builders have restarted.
168 'chromium_config': 'chromium', 188 'chromium_config': 'chromium',
169 'chromium_apply_config': ['mb', 'force_mac_toolchain'], 189 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
170 'gclient_config': 'chromium', 190 'gclient_config': 'chromium',
191 'chromium_config_kwargs': {
192 'BUILD_CONFIG': 'Debug',
193 'TARGET_PLATFORM': 'mac',
194 },
195 'test_generators': [
196 steps.generate_gtest,
197 steps.generate_script,
198 steps.generate_isolated_script,
199 ],
200 'enable_swarming': True,
201 'testing': {
202 'platform': 'mac',
203 },
204 },
205 'Mac GYP (dbg)': {
206 'chromium_config': 'chromium',
207 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
208 'gclient_config': 'chromium',
171 'chromium_config_kwargs': { 209 'chromium_config_kwargs': {
172 'BUILD_CONFIG': 'Debug', 210 'BUILD_CONFIG': 'Debug',
173 'TARGET_PLATFORM': 'mac', 211 'TARGET_PLATFORM': 'mac',
174 }, 212 },
175 'test_generators': [ 213 'test_generators': [
176 steps.generate_gtest, 214 steps.generate_gtest,
177 steps.generate_script, 215 steps.generate_script,
178 steps.generate_isolated_script, 216 steps.generate_isolated_script,
179 ], 217 ],
180 'enable_swarming': True, 218 'enable_swarming': True,
181 'testing': { 219 'testing': {
182 'platform': 'mac', 220 'platform': 'mac',
183 }, 221 },
184 }, 222 },
185 }, 223 },
186 } 224 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698