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

Unified Diff: build/common.gypi

Issue 200753002: [Android] Workaround of an android platform bug. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a build error. Created 6 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
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
} ],
],
},
« no previous file with comments | « build/android/gyp/delete_files.py ('k') | build/java_apk.gypi » ('j') | build/java_apk.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698