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

Side by Side Diff: net/net_unittests.isolate

Issue 10019014: Convert isolate.py to exclusively use .isolate files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments Created 8 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 | « net/net.gyp ('k') | tools/isolate/data/isolate/child.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'variables': {
6 'isolate_dependency_tracked': [
7 '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)',
8 '<(DEPTH)/testing/test_env.py',
9 '<(DEPTH)/third_party/pyftpdlib/src/pyftpdlib/__init__.py',
10 '<(DEPTH)/third_party/pyftpdlib/src/pyftpdlib/ftpserver.py',
Ryan Sleevi 2012/04/11 17:53:24 Outside of the Chromium-Webkit-Port-In-Webkit, alm
M-A Ruel 2012/04/11 18:22:29 I don't mind much. I didn't realize DEPTH wasn't u
11 ],
12 'isolate_dependency_untracked': [
13 'data/',
14 'tools/testserver/',
15 '<(DEPTH)/third_party/tlslite/tlslite/',
16 ],
17 },
18 'conditions': [
19 ['OS=="linux"', {
20 'variables': {
21 'isolate_dependency_tracked': [
22 '<(DEPTH)/testing/xvfb.py',
23 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
24 ],
25 'command': [
26 '<(DEPTH)/testing/xvfb.py',
27 '<(PRODUCT_DIR)',
28 '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)',
29 ],
30 },
31 }, { # else
32 'variables': {
33 'command': [
34 '<(DEPTH)/testing/test_env.py',
35 '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)',
36 ],
37 },
38 }],
39 ['OS=="win"', {
40 'variables': {
41 'isolate_dependency_tracked': [
42 ],
43 },
44 }],
45 ],
46 }
OLDNEW
« no previous file with comments | « net/net.gyp ('k') | tools/isolate/data/isolate/child.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698