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

Unified 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: Reduce copy pasted constants 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 side-by-side diff with in-line comments
Download patch
Index: net/net_unittests.isolate
diff --git a/net/net_unittests.isolate b/net/net_unittests.isolate
new file mode 100644
index 0000000000000000000000000000000000000000..17688be38acd074abc9013051a05dfa6507a9215
--- /dev/null
+++ b/net/net_unittests.isolate
@@ -0,0 +1,46 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)',
+ '<(DEPTH)/testing/test_env.py',
+ '<(DEPTH)/third_party/pyftpdlib/src/pyftpdlib/__init__.py',
+ '<(DEPTH)/third_party/pyftpdlib/src/pyftpdlib/ftpserver.py',
+ ],
+ 'isolate_dependency_untracked': [
+ 'data/',
+ 'tools/testserver/',
+ '<(DEPTH)/third_party/tlslite/tlslite/',
+ ],
+ },
+ 'conditions': [
+ ['OS=="linux"', {
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ '<(DEPTH)/testing/xvfb.py',
+ '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
+ ],
+ 'command': [
+ '<(DEPTH)/testing/xvfb.py',
+ '<(PRODUCT_DIR)',
+ '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)',
+ ],
+ },
+ }, { # else
+ 'variables': {
+ 'command': [
+ '<(DEPTH)/testing/test_env.py',
+ '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)',
+ ],
+ },
+ }],
+ ['OS=="win"', {
+ 'variables': {
+ 'isolate_dependency_tracked': [
+ ],
+ },
+ }],
+ ],
+}
« no previous file with comments | « net/net.gyp ('k') | tools/isolate/data/isolate/child.py » ('j') | tools/isolate/isolate.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698