diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-11 20:45:10 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-11 20:45:10 +0000 |
commit | 5e617a06bca42153aa72b0e3ecf632f8563b41e5 (patch) | |
tree | 706b2985535658150e199bbd7de5c3a7a238b734 /chrome/app | |
parent | 56a7fbca5b93aadbfdfb0ff20a0a95ef5c91255a (diff) | |
download | chromium_src-5e617a06bca42153aa72b0e3ecf632f8563b41e5.zip chromium_src-5e617a06bca42153aa72b0e3ecf632f8563b41e5.tar.gz chromium_src-5e617a06bca42153aa72b0e3ecf632f8563b41e5.tar.bz2 |
- Set the bundle name based on the executable name (since they both are the branding).
- Stop using CPP on the info.plist since we have to run a script anyways.
- Set the bundleid into a build setting for simple info.plist processing to pick up.
- Add a script for the chrome/app target to manually tweak the info.plist:
- collect the version number from the build tree
- collect the svn revision from the build tree
- update the info.plist keys that need the version number based on collected data.
- record the svn revision into the info.plist for trouble shooting.
Review URL: http://codereview.chromium.org/115187
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15778 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-rw-r--r-- | chrome/app/app-Info.plist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/app-Info.plist b/chrome/app/app-Info.plist index 872244f..8c18310 100644 --- a/chrome/app/app-Info.plist +++ b/chrome/app/app-Info.plist @@ -119,11 +119,11 @@ <key>CFBundleIconFile</key> <string>app.icns</string> <key>CFBundleIdentifier</key> - <string>BUNDLE_ID</string> + <string>${CHROMIUM_BUNDLE_ID}</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> - <string>BUNDLE_NAME</string> + <string>${EXECUTABLE_NAME}</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> |