summaryrefslogtreecommitdiffstats
path: root/WebKit/mac/Configurations/Version.xcconfig
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:41 -0800
commit648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /WebKit/mac/Configurations/Version.xcconfig
parenta65af38181ac7d34544586bdb5cd004de93897ad (diff)
downloadexternal_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz
external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'WebKit/mac/Configurations/Version.xcconfig')
-rw-r--r--WebKit/mac/Configurations/Version.xcconfig34
1 files changed, 0 insertions, 34 deletions
diff --git a/WebKit/mac/Configurations/Version.xcconfig b/WebKit/mac/Configurations/Version.xcconfig
deleted file mode 100644
index 16698b9..0000000
--- a/WebKit/mac/Configurations/Version.xcconfig
+++ /dev/null
@@ -1,34 +0,0 @@
-MAJOR_VERSION = 528;
-MINOR_VERSION = 5;
-TINY_VERSION = 0;
-FULL_VERSION = $(MAJOR_VERSION).$(MINOR_VERSION);
-
-// The bundle version and short version string are set based on the current build configuration, see below.
-BUNDLE_VERSION = $(BUNDLE_VERSION_$(CONFIGURATION));
-SHORT_VERSION_STRING = $(SHORT_VERSION_STRING_$(CONFIGURATION))
-
-// The system version prefix is based on the current system version.
-SYSTEM_VERSION_PREFIX = $(SYSTEM_VERSION_PREFIX_$(MAC_OS_X_VERSION_MAJOR));
-SYSTEM_VERSION_PREFIX_ = 4; // Some Tiger versions of Xcode don't set MAC_OS_X_VERSION_MAJOR.
-SYSTEM_VERSION_PREFIX_1040 = 4;
-SYSTEM_VERSION_PREFIX_1050 = 5;
-SYSTEM_VERSION_PREFIX_1060 = 6;
-
-// The production build always uses the full version with a system version prefix.
-BUNDLE_VERSION_Production = $(SYSTEM_VERSION_PREFIX)$(FULL_VERSION);
-BUNDLE_VERSION_ = $(BUNDLE_VERSION_Production);
-
-// The production build always uses the major version with a system version prefix
-SHORT_VERSION_STRING_Production = $(SYSTEM_VERSION_PREFIX)$(MAJOR_VERSION);
-SHORT_VERSION_STRING_ = $(SHORT_VERSION_STRING_Production);
-
-// Local builds are the full version with a plus suffix.
-BUNDLE_VERSION_Release = $(FULL_VERSION)+;
-BUNDLE_VERSION_Debug = $(BUNDLE_VERSION_Release);
-
-// Local builds use the major version with a plus suffix
-SHORT_VERSION_STRING_Release = $(MAJOR_VERSION)+;
-SHORT_VERSION_STRING_Debug = $(SHORT_VERSION_STRING_Release);
-
-DYLIB_COMPATIBILITY_VERSION = 1;
-DYLIB_CURRENT_VERSION = $(FULL_VERSION);