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 15 matching lines...) Expand all Loading... |
26 "chromeos/extension_ime_util.h", | 26 "chromeos/extension_ime_util.h", |
27 "chromeos/fake_ime_keyboard.cc", | 27 "chromeos/fake_ime_keyboard.cc", |
28 "chromeos/fake_ime_keyboard.h", | 28 "chromeos/fake_ime_keyboard.h", |
29 "chromeos/fake_input_method_delegate.cc", | 29 "chromeos/fake_input_method_delegate.cc", |
30 "chromeos/fake_input_method_delegate.h", | 30 "chromeos/fake_input_method_delegate.h", |
31 "chromeos/ime_candidate_window_handler_interface.h", | 31 "chromeos/ime_candidate_window_handler_interface.h", |
32 "chromeos/ime_keyboard.cc", | 32 "chromeos/ime_keyboard.cc", |
33 "chromeos/ime_keyboard.h", | 33 "chromeos/ime_keyboard.h", |
34 "chromeos/ime_keymap.cc", | 34 "chromeos/ime_keymap.cc", |
35 "chromeos/ime_keymap.h", | 35 "chromeos/ime_keymap.h", |
| 36 "chromeos/ime_keyboard_x11.cc", |
| 37 "chromeos/ime_keyboard_x11.h", |
| 38 "chromeos/ime_keymap.cc", |
| 39 "chromeos/ime_keymap.h", |
36 "chromeos/input_method_delegate.h", | 40 "chromeos/input_method_delegate.h", |
37 "chromeos/input_method_descriptor.cc", | 41 "chromeos/input_method_descriptor.cc", |
38 "chromeos/input_method_descriptor.h", | 42 "chromeos/input_method_descriptor.h", |
39 "chromeos/input_method_manager.cc", | 43 "chromeos/input_method_manager.cc", |
40 "chromeos/input_method_manager.h", | 44 "chromeos/input_method_manager.h", |
41 "chromeos/input_method_util.cc", | 45 "chromeos/input_method_util.cc", |
42 "chromeos/input_method_util.h", | 46 "chromeos/input_method_util.h", |
43 "chromeos/mock_component_extension_ime_manager.cc", | 47 "chromeos/mock_component_extension_ime_manager.cc", |
44 "chromeos/mock_component_extension_ime_manager.h", | 48 "chromeos/mock_component_extension_ime_manager.h", |
45 "chromeos/mock_component_extension_ime_manager_delegate.cc", | 49 "chromeos/mock_component_extension_ime_manager_delegate.cc", |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 libs = [ "AppKit.framework" ] | 197 libs = [ "AppKit.framework" ] |
194 } | 198 } |
195 | 199 |
196 if (use_ozone) { | 200 if (use_ozone) { |
197 deps += [ | 201 deps += [ |
198 "//ui/events/ozone:events_ozone_layout", | 202 "//ui/events/ozone:events_ozone_layout", |
199 "//ui/ozone", | 203 "//ui/ozone", |
200 ] | 204 ] |
201 } | 205 } |
202 } | 206 } |
OLD | NEW |