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

Side by Side Diff: scripts/slave/recipe_modules/chromium/chromium_fyi.py

Issue 541233003: Add Linux and Win site isolation builder_testers to chromium.fyi waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@propagate_args
Patch Set: Fixed unittests. Created 6 years, 3 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-fyi-archive', 9 'build_gs_bucket': 'chromium-fyi-archive',
10 }, 10 },
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 'GYP_DEFINES': { 237 'GYP_DEFINES': {
238 'use_openssl': '1', 238 'use_openssl': '1',
239 }, 239 },
240 'tests': [ 240 'tests': [
241 steps.DynamicGTestTests('Mac OpenSSL'), 241 steps.DynamicGTestTests('Mac OpenSSL'),
242 ], 242 ],
243 'testing': { 243 'testing': {
244 'platform': 'mac', 244 'platform': 'mac',
245 }, 245 },
246 }, 246 },
247 'Site Isolation Linux': {
248 'recipe_config': 'chromium',
249 'chromium_config_kwargs': {
250 'BUILD_CONFIG': 'Release',
251 'TARGET_BITS': 64,
252 },
253 'bot_type': 'builder_tester',
254 'compile_targets': [
255 'content_unittests',
256 'content_browsertests',
257 ],
258 'test_generators': [
259 steps.generate_gtest,
260 ],
261 'testing': {
262 'platform': 'linux',
263 },
264 },
265 'Site Isolation Win': {
266 'recipe_config': 'chromium',
267 'chromium_config_kwargs': {
268 'BUILD_CONFIG': 'Release',
269 'TARGET_PLATFORM': 'win',
270 'TARGET_BITS': 64,
271 },
272 'bot_type': 'builder_tester',
273 'compile_targets': [
274 'content_unittests',
275 'content_browsertests',
276 ],
277 'test_generators': [
278 steps.generate_gtest,
279 ],
280 'testing': {
281 'platform': 'win',
282 },
283 },
247 }, 284 },
248 } 285 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698