diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 13:41:18 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 13:41:18 +0000 |
commit | 519af5947d9c4c3535863b330c3c6623715c1ffc (patch) | |
tree | 9bcf7523895bd171bc60e45f63412987bc2a558b /chrome | |
parent | 92e1212fd2d33d4bf6489c51ae0d81e195ff3a5a (diff) | |
download | chromium_src-519af5947d9c4c3535863b330c3c6623715c1ffc.zip chromium_src-519af5947d9c4c3535863b330c3c6623715c1ffc.tar.gz chromium_src-519af5947d9c4c3535863b330c3c6623715c1ffc.tar.bz2 |
Set Mac creator signature to 'rimZ' (Google Chrome) and 'Cr24' (Chromium)
Review URL: http://codereview.chromium.org/165290
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23018 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/app-Info.plist | 2 | ||||
-rw-r--r-- | chrome/chrome.gyp | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/chrome/app/app-Info.plist b/chrome/app/app-Info.plist index 3a8e686..1341cdc 100644 --- a/chrome/app/app-Info.plist +++ b/chrome/app/app-Info.plist @@ -155,7 +155,7 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> - <string>????</string> + <string>${CHROMIUM_CREATOR}</string> <key>CFBundleURLTypes</key> <array> <dict> diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index d84fa80..145c3e0 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -68,9 +68,11 @@ ['OS=="mac"', { 'conditions': [ ['branding=="Chrome"', { - 'bundle_id': 'com.google.Chrome', + 'mac_bundle_id': 'com.google.Chrome', + 'mac_creator': 'rimZ', }, { # else: branding!="Chrome" - 'bundle_id': 'org.chromium.Chromium', + 'mac_bundle_id': 'org.chromium.Chromium', + 'mac_creator': 'Cr24', }], # branding ], # conditions }], # OS=="mac" @@ -3038,7 +3040,8 @@ # CFBundleName of CHROMIUM_SHORT_NAME # Xcode then replaces these values with the branded values we set # as settings on the target. - 'CHROMIUM_BUNDLE_ID': '<(bundle_id)', + 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', + 'CHROMIUM_CREATOR': '<(mac_creator)', 'CHROMIUM_SHORT_NAME': '<(branding)', }, 'mac_bundle_resources': [ @@ -4462,7 +4465,7 @@ ['exclude', '.*'], ], 'xcode_settings': { - 'CHROMIUM_BUNDLE_ID': '<(bundle_id)', + 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', 'CHROMIUM_SHORT_NAME': '<(branding)', 'INFOPLIST_FILE': 'app/helper-Info.plist', }, |