summaryrefslogtreecommitdiffstats
path: root/dartium_tools/print_dart_version.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dartium_tools/print_dart_version.sh')
-rwxr-xr-xdartium_tools/print_dart_version.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/dartium_tools/print_dart_version.sh b/dartium_tools/print_dart_version.sh
deleted file mode 100755
index 273e0d5..0000000
--- a/dartium_tools/print_dart_version.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-# Print svn revisions for Dartium internal repositories. The output
-# is included in each Dartium archive build / release.
-#
-# This script is necessary because Dartium maintains its own branches
-# of Chromium and WebKit. This script is for temporary use only; it
-# will not be integrated back into Chromium.
-
-function version() {
- if [ $(svnversion) == exported ]
- then
- # git-svn
- git svn info | grep Revision | cut -c 11-
- else
- # svn
- echo $(svnversion)
- fi
-}
-
-root_dir=$(dirname $0)/../..
-pushd ${root_dir} > /dev/null
-echo dartium-chromium: $(version)
-cd third_party/WebKit
-echo dartium-webkit: $(version)
-cd ../../dart/runtime
-echo dartium-runtime: $(version)
-popd > /dev/null