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

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

Issue 2097223002: Remove traces of removed Mac/Win GN builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 steps.generate_gtest, 94 steps.generate_gtest,
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': {
105 # TODO(dpranke): Remove after builders have restarted.
106 'chromium_config': 'chromium',
107 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
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': { 104 'Mac GYP': {
124 'chromium_config': 'chromium', 105 'chromium_config': 'chromium',
125 'chromium_apply_config': ['mb', 'force_mac_toolchain'], 106 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
126 'gclient_config': 'chromium', 107 'gclient_config': 'chromium',
127 'chromium_config_kwargs': { 108 'chromium_config_kwargs': {
128 'BUILD_CONFIG': 'Release', 109 'BUILD_CONFIG': 'Release',
129 'TARGET_PLATFORM': 'mac', 110 'TARGET_PLATFORM': 'mac',
130 }, 111 },
131 'test_generators': [ 112 'test_generators': [
132 steps.generate_gtest, 113 steps.generate_gtest,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'bot_type': 'tester', 157 'bot_type': 'tester',
177 'parent_buildername': 'Mac Builder (dbg)', 158 'parent_buildername': 'Mac Builder (dbg)',
178 'testing': { 159 'testing': {
179 'platform': 'mac', 160 'platform': 'mac',
180 }, 161 },
181 'enable_swarming': True, 162 'enable_swarming': True,
182 'swarming_dimensions': { 163 'swarming_dimensions': {
183 'os': 'Mac-10.9', 164 'os': 'Mac-10.9',
184 }, 165 },
185 }, 166 },
186 'Mac GN (dbg)': {
187 # TODO(dpranke): Remove after builders have restarted.
188 'chromium_config': 'chromium',
189 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
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)': { 167 'Mac GYP (dbg)': {
206 'chromium_config': 'chromium', 168 'chromium_config': 'chromium',
207 'chromium_apply_config': ['mb', 'force_mac_toolchain'], 169 'chromium_apply_config': ['mb', 'force_mac_toolchain'],
208 'gclient_config': 'chromium', 170 'gclient_config': 'chromium',
209 'chromium_config_kwargs': { 171 'chromium_config_kwargs': {
210 'BUILD_CONFIG': 'Debug', 172 'BUILD_CONFIG': 'Debug',
211 'TARGET_PLATFORM': 'mac', 173 'TARGET_PLATFORM': 'mac',
212 }, 174 },
213 'test_generators': [ 175 'test_generators': [
214 steps.generate_gtest, 176 steps.generate_gtest,
215 steps.generate_script, 177 steps.generate_script,
216 steps.generate_isolated_script, 178 steps.generate_isolated_script,
217 ], 179 ],
218 'enable_swarming': True, 180 'enable_swarming': True,
219 'testing': { 181 'testing': {
220 'platform': 'mac', 182 'platform': 'mac',
221 }, 183 },
222 }, 184 },
223 }, 185 },
224 } 186 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698