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

Side by Side Diff: content/content_unittests.isolate

Issue 196283016: Add a wrapper script which modifies the .isolate on the fly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address Vadim comments Created 6 years, 8 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 | « content/content_browsertests.isolate ('k') | net/net_unittests.isolate » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'conditions': [ 5 'conditions': [
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { 6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 7 'variables': {
8 'isolate_dependency_untracked': [ 8 'isolate_dependency_untracked': [
9 '../media/test/data/', 9 '../media/test/data/',
10 '../webkit/data/', 10 '../webkit/data/',
11 'test/data/', 11 'test/data/',
12 ], 12 ],
13 }, 13 },
14 }], 14 }],
15 ['OS=="android" or OS=="mac" or OS=="win"', { 15 ['OS=="android" or OS=="mac" or OS=="win"', {
16 'variables': { 16 'variables': {
17 'isolate_dependency_tracked': [ 17 'isolate_dependency_tracked': [
18 '<(PRODUCT_DIR)/content_resources.pak', 18 '<(PRODUCT_DIR)/content_resources.pak',
19 ], 19 ],
20 }, 20 },
21 }], 21 }],
22 ['OS=="linux" or OS=="mac" or OS=="win"', { 22 ['OS=="linux" or OS=="mac" or OS=="win"', {
23 'variables': { 23 'variables': {
24 'isolate_dependency_tracked': [ 24 'isolate_dependency_tracked': [
25 '../testing/test_env.py', 25 '../testing/test_env.py',
26 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', 26 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)',
27 ], 27 ],
28 'isolate_dependency_untracked': [
29 '../tools/swarming_client/',
30 ],
31 }, 28 },
32 }], 29 }],
33 ['OS=="linux"', { 30 ['OS=="linux"', {
34 'variables': { 31 'variables': {
35 'command': [ 32 'command': [
36 '../testing/xvfb.py', 33 '../testing/xvfb.py',
37 '<(PRODUCT_DIR)', 34 '<(PRODUCT_DIR)',
38 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', 35 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)',
39 '--brave-new-test-launcher', 36 '--brave-new-test-launcher',
40 '--test-launcher-bot-mode', 37 '--test-launcher-bot-mode',
(...skipping 30 matching lines...) Expand all
71 '<(PRODUCT_DIR)/ffmpegsumo.dll', 68 '<(PRODUCT_DIR)/ffmpegsumo.dll',
72 '<(PRODUCT_DIR)/ui_test.pak', 69 '<(PRODUCT_DIR)/ui_test.pak',
73 ], 70 ],
74 }, 71 },
75 }], 72 }],
76 ], 73 ],
77 'includes': [ 74 'includes': [
78 '../third_party/icu/icu.isolate', 75 '../third_party/icu/icu.isolate',
79 ], 76 ],
80 } 77 }
OLDNEW
« no previous file with comments | « content/content_browsertests.isolate ('k') | net/net_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698