summaryrefslogtreecommitdiffstats
path: root/build/isolate.gypi
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-14 15:06:48 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-14 15:06:48 +0000
commit76610fd8fa8bfc5422f85c077bda4b30517745ba (patch)
treefa0378715d24dbacc8110aa4a4324c19b65e3e3a /build/isolate.gypi
parentb5651c24642703469ea7059a59af72acbc5520c5 (diff)
downloadchromium_src-76610fd8fa8bfc5422f85c077bda4b30517745ba.zip
chromium_src-76610fd8fa8bfc5422f85c077bda4b30517745ba.tar.gz
chromium_src-76610fd8fa8bfc5422f85c077bda4b30517745ba.tar.bz2
Workaround gyp that removes duplicate arguments.
The slash will work fine even on Windows, since isolate.py reformats the path. NOTRY=true TBR=csharp@chromium.org BUG= Review URL: https://chromiumcodereview.appspot.com/12867003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188077 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/isolate.gypi')
-rw-r--r--build/isolate.gypi4
1 files changed, 3 insertions, 1 deletions
diff --git a/build/isolate.gypi b/build/isolate.gypi
index d57dc49..e868f54 100644
--- a/build/isolate.gypi
+++ b/build/isolate.gypi
@@ -61,7 +61,9 @@
'python',
'<(DEPTH)/tools/swarm_client/isolate.py',
'<(test_isolation_mode)',
- '--outdir', '<(PRODUCT_DIR)',
+ # GYP will eliminate duplicate arguments so '<(PRODUCT_DIR)' cannot
+ # be provided twice. To work around this behavior, append '/'.
+ '--outdir', '<(PRODUCT_DIR)/',
'--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
'--variable', 'OS', '<(OS)',
'--variable', 'chromeos', '<(chromeos)',