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

Unified Diff: build/gyp_chromium

Issue 112853004: Don't double-quote strings when passing them into GN args. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/gyp_chromium
diff --git a/build/gyp_chromium b/build/gyp_chromium
index 978ce4af5a3e8fb1bd88145bdcf7f5ef052de3b0..e8aee14af643d332b344167a64f6224a35a2b2de 100755
--- a/build/gyp_chromium
+++ b/build/gyp_chromium
@@ -129,7 +129,7 @@ def GetArgsStringForGN(supplemental_files):
# These string arguments get passed directly.
for v in ['windows_sdk_path']:
if v in vars_dict:
- gn_args += ' ' + v + '="' + EscapeStringForGN(vars_dict[v]) + '"'
+ gn_args += ' ' + v + '=' + EscapeStringForGN(vars_dict[v])
# Set the GYP flag so BUILD files know they're being invoked in GYP mode.
gn_args += ' is_gyp=true'
« 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