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

Side by Side Diff: chrome/unit_tests.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: Works 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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"', { 6 ['OS=="android" or OS=="linux"', {
7 'variables': { 7 'variables': {
8 'isolate_dependency_untracked': [ 8 'isolate_dependency_untracked': [
9 '<(PRODUCT_DIR)/test_data/', 9 '<(PRODUCT_DIR)/test_data/',
10 ], 10 ],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'isolate_dependency_tracked': [ 63 'isolate_dependency_tracked': [
64 '../testing/test_env.py', 64 '../testing/test_env.py',
65 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', 65 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)',
66 'browser/safe_browsing/two_phase_testserver.py', 66 'browser/safe_browsing/two_phase_testserver.py',
67 ], 67 ],
68 'isolate_dependency_untracked': [ 68 'isolate_dependency_untracked': [
69 '../net/tools/testserver/', 69 '../net/tools/testserver/',
70 '../third_party/pyftpdlib/', 70 '../third_party/pyftpdlib/',
71 '../third_party/pywebsocket/', 71 '../third_party/pywebsocket/',
72 '../third_party/tlslite/', 72 '../third_party/tlslite/',
73 '../tools/swarming_client/',
74 '<(PRODUCT_DIR)/pyproto/', 73 '<(PRODUCT_DIR)/pyproto/',
75 ], 74 ],
76 }, 75 },
77 }], 76 }],
78 ['OS=="linux" or OS=="mac"', { 77 ['OS=="linux" or OS=="mac"', {
79 'variables': { 78 'variables': {
80 # Can't be enabled on Windows due to http://crbug.com/342913 79 # Can't be enabled on Windows due to http://crbug.com/342913
81 'read_only': 1, 80 'read_only': 1,
82 }, 81 },
83 }], 82 }],
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 '../skia/ext/data/', 120 '../skia/ext/data/',
122 '../ui/base/glib/', 121 '../ui/base/glib/',
123 ], 122 ],
124 }, 123 },
125 }], 124 }],
126 ], 125 ],
127 'includes': [ 126 'includes': [
128 '../third_party/icu/icu.isolate', 127 '../third_party/icu/icu.isolate',
129 ], 128 ],
130 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698