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

Unified Diff: build/linux/system.gyp

Issue 6893129: Check the ibus version in build script. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Change ibus_version to ibus_min_version Created 9 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/system.gyp
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index 9a160b7d85517c12dcdcb0f135e11a5d2efe494c..30a34300593e1e2e8ed538c3a42f046709ed6bc0 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -368,18 +368,21 @@
'type': 'settings',
'conditions': [
['use_ibus==1', {
+ 'variables': {
+ 'ibus_min_version': '1.3.99.20110425',
+ },
'direct_dependent_settings': {
'defines': ['HAVE_IBUS=1'],
'cflags': [
- '<!@(<(pkg-config) --cflags ibus-1.0)',
+ '<!@(<(pkg-config) --cflags "ibus-1.0 >= <(ibus_min_version)")',
],
},
'link_settings': {
'ldflags': [
- '<!@(<(pkg-config) --libs-only-L --libs-only-other ibus-1.0)',
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other "ibus-1.0 >= <(ibus_min_version)")',
],
'libraries': [
- '<!@(<(pkg-config) --libs-only-l ibus-1.0)',
+ '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_min_version)")',
],
},
}],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698