OLD | NEW |
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 24 matching lines...) Expand all Loading... |
35 "chromeos/ime_keyboard_ozone.h", | 35 "chromeos/ime_keyboard_ozone.h", |
36 "chromeos/ime_keyboard_x11.cc", | 36 "chromeos/ime_keyboard_x11.cc", |
37 "chromeos/ime_keyboard_x11.h", | 37 "chromeos/ime_keyboard_x11.h", |
38 "chromeos/ime_keymap.cc", | 38 "chromeos/ime_keymap.cc", |
39 "chromeos/ime_keymap.h", | 39 "chromeos/ime_keymap.h", |
40 "chromeos/input_method_delegate.h", | 40 "chromeos/input_method_delegate.h", |
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/input_method_util.cc", |
| 46 "chromeos/input_method_util.h", |
45 "chromeos/mock_component_extension_ime_manager.cc", | 47 "chromeos/mock_component_extension_ime_manager.cc", |
46 "chromeos/mock_component_extension_ime_manager.h", | 48 "chromeos/mock_component_extension_ime_manager.h", |
47 "chromeos/mock_component_extension_ime_manager_delegate.cc", | 49 "chromeos/mock_component_extension_ime_manager_delegate.cc", |
48 "chromeos/mock_component_extension_ime_manager_delegate.h", | 50 "chromeos/mock_component_extension_ime_manager_delegate.h", |
49 "chromeos/mock_ime_candidate_window_handler.cc", | 51 "chromeos/mock_ime_candidate_window_handler.cc", |
50 "chromeos/mock_ime_candidate_window_handler.h", | 52 "chromeos/mock_ime_candidate_window_handler.h", |
51 "chromeos/mock_ime_engine_handler.cc", | 53 "chromeos/mock_ime_engine_handler.cc", |
52 "chromeos/mock_ime_engine_handler.h", | 54 "chromeos/mock_ime_engine_handler.h", |
53 "composition_text.cc", | 55 "composition_text.cc", |
54 "composition_text.h", | 56 "composition_text.h", |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 "input_method_factory.cc", | 156 "input_method_factory.cc", |
155 "input_method_factory.h", | 157 "input_method_factory.h", |
156 "input_method_minimal.cc", | 158 "input_method_minimal.cc", |
157 "input_method_minimal.h", | 159 "input_method_minimal.h", |
158 ] | 160 ] |
159 } | 161 } |
160 | 162 |
161 if (is_chromeos) { | 163 if (is_chromeos) { |
162 deps += [ | 164 deps += [ |
163 "//chromeos", | 165 "//chromeos", |
| 166 "//ui/chromeos/strings", |
164 "//ui/events:dom_keycode_converter", | 167 "//ui/events:dom_keycode_converter", |
165 ] | 168 ] |
166 if (!use_ozone) { | 169 if (!use_ozone) { |
167 sources -= [ | 170 sources -= [ |
168 "chromeos/ime_keyboard_ozone.cc", | 171 "chromeos/ime_keyboard_ozone.cc", |
169 "chromeos/ime_keyboard_ozone.h", | 172 "chromeos/ime_keyboard_ozone.h", |
170 ] | 173 ] |
171 } | 174 } |
172 if (!use_x11) { | 175 if (!use_x11) { |
173 sources -= [ | 176 sources -= [ |
(...skipping 27 matching lines...) Expand all Loading... |
201 libs = [ "AppKit.framework" ] | 204 libs = [ "AppKit.framework" ] |
202 } | 205 } |
203 | 206 |
204 if (use_ozone) { | 207 if (use_ozone) { |
205 deps += [ | 208 deps += [ |
206 "//ui/events/ozone:events_ozone_layout", | 209 "//ui/events/ozone:events_ozone_layout", |
207 "//ui/ozone", | 210 "//ui/ozone", |
208 ] | 211 ] |
209 } | 212 } |
210 } | 213 } |
OLD | NEW |