summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/isolate.gypi12
1 files changed, 8 insertions, 4 deletions
diff --git a/build/isolate.gypi b/build/isolate.gypi
index 0f0a163..6ddc3fe 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,
},
],