Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: chrome/tools/build/linux/version.sh

Issue 45028: Generate header file of Linux version information (currently gyp-only). (Closed)
Patch Set: conditional gyp branding Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/file_version_info_linux.h.version ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/build/linux/version.sh
diff --git a/chrome/tools/build/linux/version.sh b/chrome/tools/build/linux/version.sh
new file mode 100755
index 0000000000000000000000000000000000000000..2b6bb616272034d57f6aa849ac1452f5319165dc
--- /dev/null
+++ b/chrome/tools/build/linux/version.sh
@@ -0,0 +1,50 @@
+#!/bin/sh
+#
+# Copyright (c) 2009 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# TODO(mmoss) This is (mostly) just a conversion to sh syntax of
+# tools/build/win/version.bat. Rewrite both as common python.
+
+TMPL="$1"
+OUTFILE="$2"
+CHROMEDIR="$3"
+
+# Load version digits as environment variables.
+source "$CHROMEDIR/VERSION"
+
+# Load branding strings as environment variables
+DISTRIBUTION="chromium"
+if [ "$CHROMIUM_BUILD" = "_google_chrome" ]; then
+ DISTRIBUTION="google_chrome"
+fi
+# Make sure the string values are quoted.
+eval $(sed -e 's/\([^=]*\)=\(.*\)/\1="\2"/' \
+ "$CHROMEDIR/app/theme/$DISTRIBUTION/BRANDING")
+
+# Determine the current repository revision number.
+LASTCHANGE=$(svn info 2>/dev/null | grep "Revision:" | cut -d" " -f2-)
+if [ -z "$LASTCHANGE" ]; then
+ # Maybe it's a git client
+ LASTCHANGE=$(git-svn info 2>/dev/null | grep "Revision:" | cut -d" " -f2-)
+fi
+
+OFFICIAL_BUILD="false"
+if [ "$CHROME_BUILD_TYPE" = "_official" ]; then
+ OFFICIAL_BUILD="true"
+fi
+
+# TODO(mmoss) Make sure no sed special chars in substitutions.
+sed -e "s/@MAJOR@/$MAJOR/" \
+ -e "s/@MINOR@/$MINOR/" \
+ -e "s/@BUILD@/$BUILD/" \
+ -e "s/@PATCH@/$PATCH/" \
+ -e "s/@COMPANY_FULLNAME@/$COMPANY_FULLNAME/" \
+ -e "s/@COMPANY_SHORTNAME@/$COMPANY_SHORTNAME/" \
+ -e "s/@PRODUCT_FULLNAME@/$PRODUCT_FULLNAME/" \
+ -e "s/@PRODUCT_SHORTNAME@/$PRODUCT_SHORTNAME/" \
+ -e "s/@PRODUCT_EXE@/$PRODUCT_EXE/" \
+ -e "s/@COPYRIGHT@/$COPYRIGHT/" \
+ -e "s/@OFFICIAL_BUILD@/$OFFICIAL_BUILD/" \
+ -e "s/@LASTCHANGE@/$LASTCHANGE/" "$TMPL" > "$OUTFILE"
« no previous file with comments | « base/file_version_info_linux.h.version ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698