summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-23 03:05:36 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-23 03:05:36 +0000
commit5b79035462bce381afc334384ba15eb425cd9bc4 (patch)
treece83b9b19a9fa2376c5dd5d2474c5b1ab5cf7a72 /third_party
parent2b61b68be1db53957ebd4c6890de91f81060c74b (diff)
downloadchromium_src-5b79035462bce381afc334384ba15eb425cd9bc4.zip
chromium_src-5b79035462bce381afc334384ba15eb425cd9bc4.tar.gz
chromium_src-5b79035462bce381afc334384ba15eb425cd9bc4.tar.bz2
Change --variable argument, must now be spaced, -V foo bar, instead of -V foo=bar.
Otherwise, path quoting gets in the way on windows in a way that is very hard to fix, as the 'bar' value could have double-quote in it, resulting in something like foo="bar". R=nsylvain@chromium.org R=mark@chromium.org R=rsleevi@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/10139020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133398 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/cacheinvalidation/README.chromium2
-rw-r--r--third_party/cacheinvalidation/cacheinvalidation.gyp6
2 files changed, 4 insertions, 4 deletions
diff --git a/third_party/cacheinvalidation/README.chromium b/third_party/cacheinvalidation/README.chromium
index e54582d..bb0a90d 100644
--- a/third_party/cacheinvalidation/README.chromium
+++ b/third_party/cacheinvalidation/README.chromium
@@ -10,4 +10,4 @@ Description:
This is the API to talk to the Google Cache Invalidation service.
Local Modifications:
-None.
+None
diff --git a/third_party/cacheinvalidation/cacheinvalidation.gyp b/third_party/cacheinvalidation/cacheinvalidation.gyp
index af1905a..d126e8b 100644
--- a/third_party/cacheinvalidation/cacheinvalidation.gyp
+++ b/third_party/cacheinvalidation/cacheinvalidation.gyp
@@ -232,9 +232,9 @@
'python',
'../../tools/isolate/isolate.py',
'--mode', '<(tests_run)',
- '--variable', 'DEPTH=<(DEPTH)',
- '--variable', 'PRODUCT_DIR=<(PRODUCT_DIR)',
- '--variable', 'OS=<(OS)',
+ '--variable', 'DEPTH', '<(DEPTH)',
+ '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
+ '--variable', 'OS', '<(OS)',
'--result', '<@(_outputs)',
'cacheinvalidation_unittests.isolate',
],