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

Side by Side Diff: Source/web/webkit_unit_tests.isolate

Issue 1320253003: Add isolate/swarming support for webkit_unit_tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix nit Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/web_tests.gyp ('k') | 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 (c) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 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 'variables': {
6 'files': [
7 '<(PRODUCT_DIR)/content_shell.pak',
8 'tests/data/',
9 # Required by some image decoder tests.
10 '../platform/image-decoders/testing/',
11 '../../LayoutTests/fast/images/resources/',
12 # Required by some font tests.
13 '../platform/testing/data/',
14 ],
15 },
5 'conditions': [ 16 'conditions': [
6 ['OS=="linux" or OS=="mac" or OS=="win"', { 17 ['OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 18 'variables': {
8 'command': [ 19 'command': [
9 '<(DEPTH)/testing/test_env.py', 20 '<(DEPTH)/testing/test_env.py',
10 '<(PRODUCT_DIR)/blink_heap_unittests<(EXECUTABLE_SUFFIX)', 21 '<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)',
11 '--brave-new-test-launcher', 22 '--brave-new-test-launcher',
12 '--test-launcher-bot-mode', 23 '--test-launcher-bot-mode',
13 '--asan=<(asan)', 24 '--asan=<(asan)',
14 '--msan=<(msan)', 25 '--msan=<(msan)',
15 '--tsan=<(tsan)', 26 '--tsan=<(tsan)',
16 ], 27 ],
17 'files': [ 28 'files': [
18 '<(DEPTH)/testing/test_env.py', 29 '<(DEPTH)/testing/test_env.py',
19 '<(PRODUCT_DIR)/blink_heap_unittests<(EXECUTABLE_SUFFIX)', 30 '<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)',
20 ], 31 ],
21 }, 32 },
22 }], 33 }],
23 ], 34 ],
24 'includes': [ 35 'includes': [
25 '../../../../base/base.isolate', 36 '../../../../base/base.isolate',
26 '../../../../gin/v8.isolate', 37 '../../../../gin/v8.isolate',
38 # Required on Android to copy icudtl.dat to a device.
39 "../../../../third_party/icu/icu.isolate",
27 ], 40 ],
28 } 41 }
OLDNEW
« no previous file with comments | « Source/web/web_tests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698