diff options
author | nona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-24 07:10:58 +0000 |
---|---|---|
committer | nona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-24 07:10:58 +0000 |
commit | 5420e82840b3b7bb4d297e9d6f170c79b1f47b37 (patch) | |
tree | eb638406f74d0e3a570b10dbe3c6973b9a9e7cd4 | |
parent | 91fef7a47f01072d06a9944dfd1e3e9ca5ed6729 (diff) | |
download | chromium_src-5420e82840b3b7bb4d297e9d6f170c79b1f47b37.zip chromium_src-5420e82840b3b7bb4d297e9d6f170c79b1f47b37.tar.gz chromium_src-5420e82840b3b7bb4d297e9d6f170c79b1f47b37.tar.bz2 |
Update DEPS to use chromeos/ime.
Text input module used in ChromeOS requires dbus stuff because it communicates with external process(ibus-daemon) with dbus.
Now we have new text input framework based on Chrome Extension, and we have plan to migrate current all legacy ime to it.
The new implementation is no longer requires dbus stuff, so the location should be chromeos/ime rather than chromeos/dbus.
We can omit chromeos/dbus dependency from ui/base/ime once all migration is finished.
BUG=171351
TEST=None
Review URL: https://chromiumcodereview.appspot.com/12036025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178538 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ui/DEPS | 1 | ||||
-rw-r--r-- | ui/base/ime/DEPS | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,4 @@ include_rules = [ - "+chromeos/dbus", "+grit/app_locale_settings.h", "+grit/native_theme_resources.h", "+grit/ui_resources.h", diff --git a/ui/base/ime/DEPS b/ui/base/ime/DEPS index fceb080..56b2a81 100644 --- a/ui/base/ime/DEPS +++ b/ui/base/ime/DEPS @@ -1,4 +1,7 @@ include_rules = [ + # TODO(nona): Remove chromoeos/dbus entry once crbug.com/171351 is fixed. + "+chromeos/dbus", + "+chromeos/ime", "+third_party/gtk+/gdk/gdkkeysyms.h", "+third_party/gtk+/gtk/gtkimcontextsimpleseqs.h", ] |