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

Unified Diff: views/views.gyp

Issue 7004029: Fix to make InputMethodIBus usable on every ChromeOS device (even without TouchUI) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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: views/views.gyp
diff --git a/views/views.gyp b/views/views.gyp
index 8f86b11ce932bb910eda27f9c3a5d6c0bc0d6e72..2176bb29029b568994de888fee42858654d2407b 100644
--- a/views/views.gyp
+++ b/views/views.gyp
@@ -440,25 +440,16 @@
['exclude', 'touchui/touch_factory.h'],
],
}],
- ['use_ibus==1', {
- 'dependencies': [
- '../build/linux/system.gyp:ibus',
- ],
- 'sources/': [
- ['exclude', 'ime/input_method_gtk.cc'],
- ['exclude', 'ime/input_method_gtk.h'],
- ],
- }, { # else: use_ibus != 1
- 'sources/': [
- ['exclude', 'ime/input_method_ibus.cc'],
- ['exclude', 'ime/input_method_ibus.h'],
- ],
- }],
],
- }, { # else: touchui != 1
- 'sources!': [
- 'ime/input_method_ibus.cc',
- 'ime/input_method_ibus.h',
+ }],
+ ['use_ibus==1', {
+ 'dependencies': [
+ '../build/linux/system.gyp:ibus',
+ ],
+ }, { # else: use_ibus != 1
+ 'sources/': [
+ ['exclude', 'ime/input_method_ibus.cc'],
+ ['exclude', 'ime/input_method_ibus.h'],
],
}],
['OS=="win"', {

Powered by Google App Engine
This is Rietveld 408576698