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

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

Issue 2605843002: Add MockInputMethodManager under ui/base/ime/chromeos/ (Closed)
Patch Set: Created 3 years, 11 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 30 matching lines...) Expand all
41 "chromeos/input_method_descriptor.cc", 41 "chromeos/input_method_descriptor.cc",
42 "chromeos/input_method_descriptor.h", 42 "chromeos/input_method_descriptor.h",
43 "chromeos/input_method_manager.cc", 43 "chromeos/input_method_manager.cc",
44 "chromeos/input_method_manager.h", 44 "chromeos/input_method_manager.h",
45 "chromeos/mock_component_extension_ime_manager_delegate.cc", 45 "chromeos/mock_component_extension_ime_manager_delegate.cc",
46 "chromeos/mock_component_extension_ime_manager_delegate.h", 46 "chromeos/mock_component_extension_ime_manager_delegate.h",
47 "chromeos/mock_ime_candidate_window_handler.cc", 47 "chromeos/mock_ime_candidate_window_handler.cc",
48 "chromeos/mock_ime_candidate_window_handler.h", 48 "chromeos/mock_ime_candidate_window_handler.h",
49 "chromeos/mock_ime_engine_handler.cc", 49 "chromeos/mock_ime_engine_handler.cc",
50 "chromeos/mock_ime_engine_handler.h", 50 "chromeos/mock_ime_engine_handler.h",
51 "chromeos/mock_input_method_manager.cc",
sky 2017/01/03 16:29:47 Is it expected the that mock code is used in produ
Azure Wei 2017/01/04 09:13:27 Moved them to ui/base:test_support.
52 "chromeos/mock_input_method_manager.h",
51 "composition_text.cc", 53 "composition_text.cc",
52 "composition_text.h", 54 "composition_text.h",
53 "composition_text_util_pango.cc", 55 "composition_text_util_pango.cc",
54 "composition_text_util_pango.h", 56 "composition_text_util_pango.h",
55 "composition_underline.h", 57 "composition_underline.h",
56 "ime_bridge.cc", 58 "ime_bridge.cc",
57 "ime_bridge.h", 59 "ime_bridge.h",
58 "ime_engine_handler_interface.h", 60 "ime_engine_handler_interface.h",
59 "ime_input_context_handler_interface.h", 61 "ime_input_context_handler_interface.h",
60 "infolist_entry.cc", 62 "infolist_entry.cc",
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 libs = [ "AppKit.framework" ] 201 libs = [ "AppKit.framework" ]
200 } 202 }
201 203
202 if (use_ozone) { 204 if (use_ozone) {
203 deps += [ 205 deps += [
204 "//ui/events/ozone:events_ozone_layout", 206 "//ui/events/ozone:events_ozone_layout",
205 "//ui/ozone", 207 "//ui/ozone",
206 ] 208 ]
207 } 209 }
208 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698