diff options
author | milligan@google.com <milligan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-15 19:55:11 +0000 |
---|---|---|
committer | milligan@google.com <milligan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-15 19:55:11 +0000 |
commit | a591c21aae5a4340787d73394162148edaee3c88 (patch) | |
tree | 6291c68c006e294a07747323726c269642d9db83 /o3d/plugin | |
parent | 2896dccc7a66c857f53f297d9ae9790b242a0e92 (diff) | |
download | chromium_src-a591c21aae5a4340787d73394162148edaee3c88.zip chromium_src-a591c21aae5a4340787d73394162148edaee3c88.tar.gz chromium_src-a591c21aae5a4340787d73394162148edaee3c88.tar.bz2 |
Fix build break: More missing quotes. I was able to
repro the break this time and confirm the fix.
Review URL: http://codereview.chromium.org/6697025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78267 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin')
-rw-r--r-- | o3d/plugin/plugin.gyp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/o3d/plugin/plugin.gyp b/o3d/plugin/plugin.gyp index 4660e23..0a282a54 100644 --- a/o3d/plugin/plugin.gyp +++ b/o3d/plugin/plugin.gyp @@ -662,13 +662,13 @@ '-c', 'python ' 'version_info.py ' - '--set_name=<(plugin_name) ' - '--set_version=<(plugin_version) ' - '--set_npapi_filename=<(plugin_npapi_filename) ' - '--set_npapi_mimetype=<(plugin_npapi_mimetype) ' + '--set_name="<(plugin_name)" ' + '--set_version="<(plugin_version)" ' + '--set_npapi_filename="<(plugin_npapi_filename)" ' + '--set_npapi_mimetype="<(plugin_npapi_mimetype)" ' '--set_o3d_plugin_breakpad_url="<(o3d_plugin_breakpad_url)" ' - 'mac/Info.plist ' - '<(SHARED_INTERMEDIATE_DIR)/plugin/Info.plist', + '"mac/Info.plist" ' + '"<(SHARED_INTERMEDIATE_DIR)/plugin/Info.plist"', ], }, ], |