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

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

Issue 2162343002: tryserver.chromium.linux: convert chromium_trybot builders to remote_run (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 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 'src/third_party/WebKit/LayoutTests/FlagExpectations/site-per-process' , 521 'src/third_party/WebKit/LayoutTests/FlagExpectations/site-per-process' ,
522 '--options', 522 '--options',
523 'http/tests', 523 'http/tests',
524 ]), 524 ]),
525 ], 525 ],
526 'test_generators': [ 526 'test_generators': [
527 steps.generate_gtest, 527 steps.generate_gtest,
528 steps.generate_script, 528 steps.generate_script,
529 steps.generate_isolated_script, 529 steps.generate_isolated_script,
530 ], 530 ],
531 'checkout_dir': 'linux',
531 'testing': { 532 'testing': {
532 'platform': 'linux', 533 'platform': 'linux',
533 }, 534 },
534 }, 535 },
535 'Site Isolation Win': { 536 'Site Isolation Win': {
536 'chromium_config': 'chromium', 537 'chromium_config': 'chromium',
537 'chromium_apply_config': ['mb'], 538 'chromium_apply_config': ['mb'],
538 'gclient_config': 'chromium', 539 'gclient_config': 'chromium',
539 'chromium_config_kwargs': { 540 'chromium_config_kwargs': {
540 'BUILD_CONFIG': 'Release', 541 'BUILD_CONFIG': 'Release',
(...skipping 1693 matching lines...) Expand 10 before | Expand all | Expand 10 after
2234 steps.generate_gtest, 2235 steps.generate_gtest,
2235 steps.generate_script, 2236 steps.generate_script,
2236 steps.generate_isolated_script, 2237 steps.generate_isolated_script,
2237 ], 2238 ],
2238 'testing': { 'platform': 'win', }, 2239 'testing': { 'platform': 'win', },
2239 'use_isolate': True, 2240 'use_isolate': True,
2240 'enable_swarming': True, 2241 'enable_swarming': True,
2241 }, 2242 },
2242 }, 2243 },
2243 } 2244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698