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

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: 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 cbe5194086ffcd27a9ce9d039b1b2d098bd06f42..ed264b35f76a35b97b7bb81404c0a1b05d4eb6e9 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -351,18 +351,21 @@
'type': 'settings',
'conditions': [
['use_ibus==1', {
+ 'variables': {
+ 'ibus_version': '1.3.99.20110425',
Mark Mentovai 2011/05/02 17:51:39 ibus_version sounds like it’s the version of ibus
Peng 2011/05/02 18:12:29 Done.
+ },
'direct_dependent_settings': {
'defines': ['HAVE_IBUS=1'],
'cflags': [
- '<!@(<(pkg-config) --cflags ibus-1.0)',
+ '<!@(<(pkg-config) --cflags "ibus-1.0 >= <(ibus_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_version)")',
],
'libraries': [
- '<!@(<(pkg-config) --libs-only-l ibus-1.0)',
+ '<!@(<(pkg-config) --libs-only-l "ibus-1.0 >= <(ibus_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