| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "input_method_win.h", | 82 "input_method_win.h", |
| 83 "linux/fake_input_method_context.cc", | 83 "linux/fake_input_method_context.cc", |
| 84 "linux/fake_input_method_context.h", | 84 "linux/fake_input_method_context.h", |
| 85 "linux/fake_input_method_context_factory.cc", | 85 "linux/fake_input_method_context_factory.cc", |
| 86 "linux/fake_input_method_context_factory.h", | 86 "linux/fake_input_method_context_factory.h", |
| 87 "linux/linux_input_method_context.h", | 87 "linux/linux_input_method_context.h", |
| 88 "linux/linux_input_method_context_factory.cc", | 88 "linux/linux_input_method_context_factory.cc", |
| 89 "linux/linux_input_method_context_factory.h", | 89 "linux/linux_input_method_context_factory.h", |
| 90 "mock_input_method.cc", | 90 "mock_input_method.cc", |
| 91 "mock_input_method.h", | 91 "mock_input_method.h", |
| 92 "text_edit_commands.h", |
| 92 "text_input_client.cc", | 93 "text_input_client.cc", |
| 93 "text_input_client.h", | 94 "text_input_client.h", |
| 94 "ui_base_ime_export.h", | 95 "ui_base_ime_export.h", |
| 95 "win/imm32_manager.cc", | 96 "win/imm32_manager.cc", |
| 96 "win/imm32_manager.h", | 97 "win/imm32_manager.h", |
| 97 "win/tsf_input_scope.cc", | 98 "win/tsf_input_scope.cc", |
| 98 "win/tsf_input_scope.h", | 99 "win/tsf_input_scope.h", |
| 99 ] | 100 ] |
| 100 | 101 |
| 101 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 102 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 129 ] | 130 ] |
| 130 } | 131 } |
| 131 | 132 |
| 132 if (use_aura && is_android) { | 133 if (use_aura && is_android) { |
| 133 sources += [ | 134 sources += [ |
| 134 "input_method_android.cc", | 135 "input_method_android.cc", |
| 135 "input_method_android.h", | 136 "input_method_android.h", |
| 136 ] | 137 ] |
| 137 } | 138 } |
| 138 | 139 |
| 140 if (!is_chromeos && is_linux) { |
| 141 sources += [ |
| 142 "linux/text_edit_command_auralinux.cc", |
| 143 "linux/text_edit_command_auralinux.h", |
| 144 "linux/text_edit_key_bindings_delegate_auralinux.cc", |
| 145 "linux/text_edit_key_bindings_delegate_auralinux.h", |
| 146 ] |
| 147 } |
| 148 |
| 139 if (!toolkit_views && !use_aura) { | 149 if (!toolkit_views && !use_aura) { |
| 140 sources -= [ | 150 sources -= [ |
| 141 "input_method_factory.cc", | 151 "input_method_factory.cc", |
| 142 "input_method_factory.h", | 152 "input_method_factory.h", |
| 143 "input_method_minimal.cc", | 153 "input_method_minimal.cc", |
| 144 "input_method_minimal.h", | 154 "input_method_minimal.h", |
| 145 ] | 155 ] |
| 146 } | 156 } |
| 147 | 157 |
| 148 if (is_chromeos) { | 158 if (is_chromeos) { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 libs = [ "imm32.lib" ] | 194 libs = [ "imm32.lib" ] |
| 185 } | 195 } |
| 186 | 196 |
| 187 if (use_ozone) { | 197 if (use_ozone) { |
| 188 deps += [ | 198 deps += [ |
| 189 "//ui/events/ozone:events_ozone_layout", | 199 "//ui/events/ozone:events_ozone_layout", |
| 190 "//ui/ozone", | 200 "//ui/ozone", |
| 191 ] | 201 ] |
| 192 } | 202 } |
| 193 } | 203 } |
| OLD | NEW |