Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 28e3389b76fe724be78b51b54f52bc61a5c1b274..d3bfc94b976e0651a3eebf9aa0a4b7da08f4f18d 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -3771,6 +3771,8 @@ |
'target_defaults': { |
'variables': { |
'release_extra_cflags%': '', |
+ 'lib_version': |
+ '<!(python <(DEPTH)/build/util/version.py -f <(DEPTH)/chrome/VERSION -t "@BUILD@.@PATCH@")', |
'conditions': [ |
# If we're using the components build, append "cr" to all shared |
# libraries to avoid naming collisions with android system library |
@@ -3778,7 +3780,7 @@ |
['component=="shared_library"', { |
'android_product_extension': 'cr.so', |
}, { |
- 'android_product_extension': 'so', |
+ 'android_product_extension': '<(lib_version).so', |
cjhopman
2014/03/17 18:32:35
This is going to apply to all shared libraries. We
Feng Qian
2014/03/18 00:07:01
Strictly speaking, it applies to all libraries onl
|
} ], |
], |
}, |