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

Side by Side Diff: ui/base/ime/BUILD.gn

Issue 2957173004: Make DispatchKeyEventPostIME() asynchronous.
Patch Set: cleanup. Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("text_input_types") { 8 source_set("text_input_types") {
9 sources = [ 9 sources = [
10 "text_input_flags.h", 10 "text_input_flags.h",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "ime_input_context_handler_interface.h", 61 "ime_input_context_handler_interface.h",
62 "infolist_entry.cc", 62 "infolist_entry.cc",
63 "infolist_entry.h", 63 "infolist_entry.h",
64 "input_method.h", 64 "input_method.h",
65 "input_method_auralinux.cc", 65 "input_method_auralinux.cc",
66 "input_method_auralinux.h", 66 "input_method_auralinux.h",
67 "input_method_base.cc", 67 "input_method_base.cc",
68 "input_method_base.h", 68 "input_method_base.h",
69 "input_method_chromeos.cc", 69 "input_method_chromeos.cc",
70 "input_method_chromeos.h", 70 "input_method_chromeos.h",
71 "input_method_delegate.cc",
71 "input_method_delegate.h", 72 "input_method_delegate.h",
72 "input_method_factory.cc", 73 "input_method_factory.cc",
73 "input_method_factory.h", 74 "input_method_factory.h",
74 "input_method_initializer.cc", 75 "input_method_initializer.cc",
75 "input_method_initializer.h", 76 "input_method_initializer.h",
76 "input_method_mac.h", 77 "input_method_mac.h",
77 "input_method_mac.mm", 78 "input_method_mac.mm",
78 "input_method_minimal.cc", 79 "input_method_minimal.cc",
79 "input_method_minimal.h", 80 "input_method_minimal.h",
80 "input_method_observer.h", 81 "input_method_observer.h",
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 libs = [ "AppKit.framework" ] 204 libs = [ "AppKit.framework" ]
204 } 205 }
205 206
206 if (use_ozone) { 207 if (use_ozone) {
207 deps += [ 208 deps += [
208 "//ui/events/ozone:events_ozone_layout", 209 "//ui/events/ozone:events_ozone_layout",
209 "//ui/ozone", 210 "//ui/ozone",
210 ] 211 ]
211 } 212 }
212 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698