diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-07 06:25:17 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-07 06:25:17 +0000 |
commit | 8fcde31f65cfb51a5a1b55d11ec7d8c7f1866b6a (patch) | |
tree | ca89756661db8cc77d52d9261ad534de7a3291a3 /chrome/chrome.gyp | |
parent | c624240fb9c3e684d60a8a8e10ec9bedae8bbeed (diff) | |
download | chromium_src-8fcde31f65cfb51a5a1b55d11ec7d8c7f1866b6a.zip chromium_src-8fcde31f65cfb51a5a1b55d11ec7d8c7f1866b6a.tar.gz chromium_src-8fcde31f65cfb51a5a1b55d11ec7d8c7f1866b6a.tar.bz2 |
Fix tweak_info_plist.py to be explicit about arguments.
BUG=115784
TEST=none
Review URL: http://codereview.chromium.org/9617032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.gyp')
-rw-r--r-- | chrome/chrome.gyp | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 2b8aea5..00f2c9a 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -780,16 +780,14 @@ { # Modify the Info.plist as needed. The script explains why this # is needed. This is also done in the chrome and chrome_dll - # targets. In this case, --breakpad=0, -k0, and -s0 are used - # because Breakpad, Keystone, and Subversion keys are never - # placed into the helper. + # targets. In this case, --breakpad=0, --keystone=0, and --svn=0 + # are used because Breakpad, Keystone, and Subversion keys are + # never placed into the helper. 'postbuild_name': 'Tweak Info.plist', 'action': ['<(tweak_info_plist_path)', '--breakpad=0', - '-k0', - '-s0', - '<(branding)', - '<(mac_bundle_id)'], + '--keystone=0', + '--svn=0'], }, { # Make sure there isn't any Objective-C in the helper app's @@ -880,16 +878,14 @@ { # Modify the Info.plist as needed. The script explains why this # is needed. This is also done in the chrome and chrome_dll - # targets. In this case, --breakpad=0, -k0, and -s0 are used - # because Breakpad, Keystone, and Subversion keys are never - # placed into the app mode loader. + # targets. In this case, --breakpad=0, --keystone=0, and --svn=0 + # are used because Breakpad, Keystone, and Subversion keys are + # never placed into the app mode loader. 'postbuild_name': 'Tweak Info.plist', 'action': ['<(tweak_info_plist_path)', '--breakpad=0', - '-k0', - '-s0', - '<(branding)', - '<(mac_bundle_id)'], + '--keystone=0', + '--svn=0'], }, ], }, # target app_mode_app |