| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 libs = [ "imm32.lib" ] | 185 libs = [ "imm32.lib" ] |
| 185 } | 186 } |
| 186 | 187 |
| 187 if (use_ozone) { | 188 if (use_ozone) { |
| 188 deps += [ | 189 deps += [ |
| 189 "//ui/events/ozone:events_ozone_layout", | 190 "//ui/events/ozone:events_ozone_layout", |
| 190 "//ui/ozone", | 191 "//ui/ozone", |
| 191 ] | 192 ] |
| 192 } | 193 } |
| 193 } | 194 } |
| OLD | NEW |