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

Unified Diff: chrome/chrome_dll.gypi

Issue 1322002: Change how version_build_patch is computed to allow PATCH > 255 (Closed)
Patch Set: incorporated Mark's feedback Created 10 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 | « chrome/chrome.gyp ('k') | chrome/tools/build/version.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_dll.gypi
diff --git a/chrome/chrome_dll.gypi b/chrome/chrome_dll.gypi
index e62e2e1d0ec51a8fabfa27830aec58f7ced2a633..a6e2f15f772fe8cddd1291511e1bd36a6f4fadf0 100644
--- a/chrome/chrome_dll.gypi
+++ b/chrome/chrome_dll.gypi
@@ -144,13 +144,13 @@
# 16-bit unsigned integer, and b and c are 8-bit unsigned
# integers. Any missing component is taken to be 0. The
# best mapping from product version numbers into this scheme
- # is to just use the build and patch numbers. There is no
- # ambiguity in this scheme because the build number is
- # guaranteed unique even across distinct major and minor
- # version numbers. These settings correspond to
+ # is to just use a=BUILD, b=(PATCH/256), c=(PATCH%256). There
+ # is no ambiguity in this scheme because the build and patch
+ # numbers are guaranteed unique even across distinct major
+ # and minor version numbers. These settings correspond to
# -compatibility_version and -current_version.
- 'DYLIB_COMPATIBILITY_VERSION': '<(version_build_patch)',
- 'DYLIB_CURRENT_VERSION': '<(version_build_patch)',
+ 'DYLIB_COMPATIBILITY_VERSION': '<(version_mac_dylib)',
+ 'DYLIB_CURRENT_VERSION': '<(version_mac_dylib)',
# The framework is placed within the .app's versioned
# directory. DYLIB_INSTALL_NAME_BASE and
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/tools/build/version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698