summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-24 07:10:58 +0000
committernona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-24 07:10:58 +0000
commit5420e82840b3b7bb4d297e9d6f170c79b1f47b37 (patch)
treeeb638406f74d0e3a570b10dbe3c6973b9a9e7cd4
parent91fef7a47f01072d06a9944dfd1e3e9ca5ed6729 (diff)
downloadchromium_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/DEPS1
-rw-r--r--ui/base/ime/DEPS3
2 files changed, 3 insertions, 1 deletions
diff --git a/ui/DEPS b/ui/DEPS
index 1f7a282..4cb4bc2 100644
--- a/ui/DEPS
+++ b/ui/DEPS
@@ -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",
]