summaryrefslogtreecommitdiffstats
path: root/build/mac
diff options
context:
space:
mode:
authorstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-23 22:53:18 +0000
committerstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-23 22:53:18 +0000
commitbbf52444adcf0b8d08f36877e938831e5bd82333 (patch)
tree8d279c69e8aa5e2c199fd78ee2a3487596219816 /build/mac
parentc4cc7f2b4490831820cbd8461566e5ddb1154c1d (diff)
downloadchromium_src-bbf52444adcf0b8d08f36877e938831e5bd82333.zip
chromium_src-bbf52444adcf0b8d08f36877e938831e5bd82333.tar.gz
chromium_src-bbf52444adcf0b8d08f36877e938831e5bd82333.tar.bz2
Make the Mac Info.plist SCM keys generic
This allows the file_version_info_mac code to make sense for any SCM (e.g., git). It also aligns the use of FetchVersionInfo to its documented behavior, which is to return a (branch, revision) tuple for "some appropriate revision control system". BUG=None Review URL: https://chromiumcodereview.appspot.com/10828228 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153101 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/mac')
-rwxr-xr-xbuild/mac/tweak_info_plist.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/build/mac/tweak_info_plist.py b/build/mac/tweak_info_plist.py
index 07a3a0b..9b57e7d 100755
--- a/build/mac/tweak_info_plist.py
+++ b/build/mac/tweak_info_plist.py
@@ -101,8 +101,8 @@ def _AddVersionKeys(plist):
return True
-def _DoSVNKeys(plist, add_keys):
- """Adds the SVN information, visible in about:version, to property list. If
+def _DoSCMKeys(plist, add_keys):
+ """Adds the SCM information, visible in about:version, to property list. If
|add_keys| is True, it will insert the keys, otherwise it will remove them."""
scm_path, scm_revision = None, None
if add_keys:
@@ -111,16 +111,16 @@ def _DoSVNKeys(plist, add_keys):
scm_path, scm_revision = version_info.url, version_info.revision
# See if the operation failed.
- _RemoveKeys(plist, 'SVNRevision')
+ _RemoveKeys(plist, 'SCMRevision')
if scm_revision != None:
- plist['SVNRevision'] = scm_revision
+ plist['SCMRevision'] = scm_revision
elif add_keys:
- print >>sys.stderr, 'Could not determine svn revision. This may be OK.'
+ print >>sys.stderr, 'Could not determine SCM revision. This may be OK.'
if scm_path != None:
- plist['SVNPath'] = scm_path
+ plist['SCMPath'] = scm_path
else:
- _RemoveKeys(plist, 'SVNPath')
+ _RemoveKeys(plist, 'SCMPath')
def _DoPDFKeys(plist, add_keys):
@@ -220,8 +220,8 @@ def Main(argv):
help='Enable Breakpad\'s uploading of crash dumps [1 or 0]')
parser.add_option('--keystone', dest='use_keystone', action='store',
type='int', default=False, help='Enable Keystone [1 or 0]')
- parser.add_option('--svn', dest='add_svn_info', action='store', type='int',
- default=True, help='Add SVN metadata [1 or 0]')
+ parser.add_option('--scm', dest='add_scm_info', action='store', type='int',
+ default=True, help='Add SCM metadata [1 or 0]')
parser.add_option('--pdf', dest='add_pdf_support', action='store', type='int',
default=False, help='Add PDF file handler support [1 or 0]')
parser.add_option('--branding', dest='branding', action='store',
@@ -271,8 +271,8 @@ def Main(argv):
else:
_RemoveKeystoneKeys(plist)
- # Adds or removes any SVN keys.
- _DoSVNKeys(plist, options.add_svn_info)
+ # Adds or removes any SCM keys.
+ _DoSCMKeys(plist, options.add_scm_info)
# Adds or removes the PDF file handler entry.
_DoPDFKeys(plist, options.add_pdf_support)