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

Side by Side Diff: scripts/slave/recipes/blink_trybot.py

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Address review comments. Created 5 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
« no previous file with comments | « scripts/slave/recipes/blink_downstream.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 infra.libs.infra_types import freeze 5 from infra.libs.infra_types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'bot_update', 8 'bot_update',
9 'chromium', 9 'chromium',
10 'chromium_tests', 10 'chromium_tests',
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 api.isolate.clean_isolated_files(api.chromium.output_dir) 389 api.isolate.clean_isolated_files(api.chromium.output_dir)
390 api.chromium.compile() 390 api.chromium.compile()
391 api.isolate.isolate_tests(api.chromium.output_dir) 391 api.isolate.isolate_tests(api.chromium.output_dir)
392 392
393 extra_args = [] 393 extra_args = []
394 if 'oilpan' in buildername: 394 if 'oilpan' in buildername:
395 extra_args.extend(['--additional-expectations', 395 extra_args.extend(['--additional-expectations',
396 api.path['checkout'].join('third_party', 'WebKit', 396 api.path['checkout'].join('third_party', 'WebKit',
397 'LayoutTests', 397 'LayoutTests',
398 'OilpanExpectations')]) 398 'OilpanExpectations')])
399 tests.append(api.chromium.steps.BlinkTest(extra_args=extra_args)) 399 tests.append(api.chromium_tests.steps.BlinkTest(extra_args=extra_args))
400 400
401 api.test_utils.determine_new_failures(api, tests, deapply_patch_fn) 401 api.test_utils.determine_new_failures(api, tests, deapply_patch_fn)
402 402
403 403
404 def GenSteps(api): 404 def GenSteps(api):
405 with api.tryserver.set_failure_hash(): 405 with api.tryserver.set_failure_hash():
406 return _GenStepsInternal(api) 406 return _GenStepsInternal(api)
407 407
408 408
409 def _sanitize_nonalpha(text): 409 def _sanitize_nonalpha(text):
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 passing=False, is_win=False, swarming=True)) 537 passing=False, is_win=False, swarming=True))
538 ) 538 )
539 539
540 yield ( 540 yield (
541 api.test('use_v8_patch_on_blink_trybot') + 541 api.test('use_v8_patch_on_blink_trybot') +
542 properties(buildername='mac_blink_rel', 542 properties(buildername='mac_blink_rel',
543 mastername='tryserver.blink', 543 mastername='tryserver.blink',
544 patch_project='v8') + 544 patch_project='v8') +
545 api.platform.name('mac') 545 api.platform.name('mac')
546 ) 546 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/blink_downstream.py ('k') | scripts/slave/recipes/chromium.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698