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

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

Issue 1916053005: chromium_trybot: add components/test_runner and content/shell/renderer/layout_test to CHROMIUM_BLIN… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 import collections 5 import collections
6 6
7 from recipe_engine.types import freeze 7 from recipe_engine.types import freeze
8 8
9 DEPS = [ 9 DEPS = [
10 'depot_tools/bot_update', 10 'depot_tools/bot_update',
(...skipping 21 matching lines...) Expand all
32 # TODO(phajdan.jr): Remove special case for layout tests. 32 # TODO(phajdan.jr): Remove special case for layout tests.
33 # This could be done by moving layout tests to main waterfall. 33 # This could be done by moving layout tests to main waterfall.
34 CHROMIUM_BLINK_TESTS_BUILDERS = freeze([ 34 CHROMIUM_BLINK_TESTS_BUILDERS = freeze([
35 'linux_chromium_rel_ng', 35 'linux_chromium_rel_ng',
36 'mac_chromium_rel_ng', 36 'mac_chromium_rel_ng',
37 'win_chromium_rel_ng', 37 'win_chromium_rel_ng',
38 ]) 38 ])
39 39
40 40
41 CHROMIUM_BLINK_TESTS_PATHS = freeze([ 41 CHROMIUM_BLINK_TESTS_PATHS = freeze([
42 # Service worker code is primarily tested in Blink layout tests. 42 'components/test_runner',
43 'content/browser/bluetooth', 43 'content/browser/bluetooth',
44 'content/browser/service_worker', 44 'content/browser/service_worker',
45 'content/child/service_worker', 45 'content/child/service_worker',
46 'content/common/bluetooth', 46 'content/common/bluetooth',
47 'content/renderer/bluetooth', 47 'content/renderer/bluetooth',
48 'content/renderer/service_worker', 48 'content/renderer/service_worker',
49 'content/shell/browser/layout_test', 49 'content/shell/browser/layout_test',
50 'content/shell/renderer/layout_test',
50 'device/bluetooth', 51 'device/bluetooth',
51 'device/usb/public/interfaces', 52 'device/usb/public/interfaces',
52 'media', 53 'media',
53 'third_party/WebKit', 54 'third_party/WebKit',
54 'third_party/harfbuzz-ng', 55 'third_party/harfbuzz-ng',
55 'third_party/iccjpeg', 56 'third_party/iccjpeg',
56 'third_party/libjpeg', 57 'third_party/libjpeg',
57 'third_party/libjpeg_turbo', 58 'third_party/libjpeg_turbo',
58 'third_party/libpng', 59 'third_party/libpng',
59 'third_party/libwebp', 60 'third_party/libwebp',
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 props(mastername='tryserver.v8', 889 props(mastername='tryserver.v8',
889 buildername='v8_linux_blink_rel', 890 buildername='v8_linux_blink_rel',
890 patch_project='v8') + 891 patch_project='v8') +
891 api.platform.name('linux') + 892 api.platform.name('linux') +
892 suppress_analyze(more_exclusions=['v8/f.*']) + 893 suppress_analyze(more_exclusions=['v8/f.*']) +
893 api.override_step_data('webkit_tests (with patch)', 894 api.override_step_data('webkit_tests (with patch)',
894 api.test_utils.canned_test_output(passing=False)) + 895 api.test_utils.canned_test_output(passing=False)) +
895 api.override_step_data('webkit_tests (without patch)', 896 api.override_step_data('webkit_tests (without patch)',
896 api.test_utils.canned_test_output(passing=True, minimal=True)) 897 api.test_utils.canned_test_output(passing=True, minimal=True))
897 ) 898 )
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698