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

Unified Diff: build/isolate.gypi

Issue 12398025: Start isolate outdir in build directory (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 7 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/isolate.gypi
diff --git a/build/isolate.gypi b/build/isolate.gypi
index 0f0a163716ae5515f7ec22774fc6f512f0233705..6ddc3fef2bfd1a3748f1103fff2c9fe18d9e609d 100644
--- a/build/isolate.gypi
+++ b/build/isolate.gypi
@@ -60,16 +60,20 @@
'python',
'<(DEPTH)/tools/swarm_client/isolate.py',
'<(test_isolation_mode)',
- '--outdir', '<(test_isolation_outdir)',
'--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
'--variable', 'OS', '<(OS)',
'--variable', 'chromeos', '<(chromeos)',
'--result', '<@(_outputs)',
'--isolate', '<(RULE_INPUT_PATH)',
- # Remove once mac compiles are fixed.
- '-v',
- '-v',
],
+ 'conditions': [
+ ["test_isolation_outdir!=''", {
+ 'action': [
+ '--outdir', '<(PRODUCT_DIR)/<(test_isolation_outdir)',
+ ],
+ }],
+ ],
+
'msvs_cygwin_shell': 0,
},
],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698