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 component("ime") { | 8 component("ime") { |
9 output_name = "ui_base_ime" | 9 output_name = "ui_base_ime" |
10 sources = [ | 10 sources = [ |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "input_method_auralinux.h", | 60 "input_method_auralinux.h", |
61 "input_method_base.cc", | 61 "input_method_base.cc", |
62 "input_method_base.h", | 62 "input_method_base.h", |
63 "input_method_chromeos.cc", | 63 "input_method_chromeos.cc", |
64 "input_method_chromeos.h", | 64 "input_method_chromeos.h", |
65 "input_method_delegate.h", | 65 "input_method_delegate.h", |
66 "input_method_factory.cc", | 66 "input_method_factory.cc", |
67 "input_method_factory.h", | 67 "input_method_factory.h", |
68 "input_method_initializer.cc", | 68 "input_method_initializer.cc", |
69 "input_method_initializer.h", | 69 "input_method_initializer.h", |
| 70 "input_method_log_collector.cc", |
| 71 "input_method_log_collector.h", |
70 "input_method_mac.h", | 72 "input_method_mac.h", |
71 "input_method_mac.mm", | 73 "input_method_mac.mm", |
72 "input_method_minimal.cc", | 74 "input_method_minimal.cc", |
73 "input_method_minimal.h", | 75 "input_method_minimal.h", |
74 "input_method_observer.h", | 76 "input_method_observer.h", |
75 "input_method_win.cc", | 77 "input_method_win.cc", |
76 "input_method_win.h", | 78 "input_method_win.h", |
77 "linux/fake_input_method_context.cc", | 79 "linux/fake_input_method_context.cc", |
78 "linux/fake_input_method_context.h", | 80 "linux/fake_input_method_context.h", |
79 "linux/fake_input_method_context_factory.cc", | 81 "linux/fake_input_method_context_factory.cc", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 libs = [ "imm32.lib" ] | 179 libs = [ "imm32.lib" ] |
178 } | 180 } |
179 | 181 |
180 if (use_ozone) { | 182 if (use_ozone) { |
181 deps += [ | 183 deps += [ |
182 "//ui/events/ozone:events_ozone_layout", | 184 "//ui/events/ozone:events_ozone_layout", |
183 "//ui/ozone", | 185 "//ui/ozone", |
184 ] | 186 ] |
185 } | 187 } |
186 } | 188 } |
OLD | NEW |