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

Unified Diff: chrome/chrome.gyp

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 | « no previous file | chrome/chrome_dll.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index 616a0f41b11fb614c68e6b9cd6a2212301f1c283..eb07bb599978a9286502953c0da25954b4455f65 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -13,8 +13,8 @@
'version_path': '<(version_path)',
'version_full':
'<!(python <(version_py_path) -f <(version_path) -t "@MAJOR@.@MINOR@.@BUILD@.@PATCH@")',
- 'version_build_patch':
- '<!(python <(version_py_path) -f <(version_path) -t "@BUILD@.@PATCH@")',
+ 'version_mac_dylib':
+ '<!(python <(version_py_path) -f <(version_path) -t "@BUILD@.@PATCH_HI@.@PATCH_LO@" -e "PATCH_HI=int(PATCH)/256" -e "PATCH_LO=int(PATCH)%256")',
# Define the common dependencies that contain all the actual
# Chromium functionality. This list gets pulled in below by
@@ -1210,8 +1210,8 @@
],
},
'xcode_settings': {
- 'DYLIB_COMPATIBILITY_VERSION': '<(version_build_patch)',
- 'DYLIB_CURRENT_VERSION': '<(version_build_patch)',
+ 'DYLIB_COMPATIBILITY_VERSION': '<(version_mac_dylib)',
+ 'DYLIB_CURRENT_VERSION': '<(version_mac_dylib)',
'DYLIB_INSTALL_NAME_BASE': '@executable_path',
},
'postbuilds': [
« no previous file with comments | « no previous file | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698