| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "linux/linux_input_method_context.h", | 82 "linux/linux_input_method_context.h", |
| 83 "linux/linux_input_method_context_factory.cc", | 83 "linux/linux_input_method_context_factory.cc", |
| 84 "linux/linux_input_method_context_factory.h", | 84 "linux/linux_input_method_context_factory.h", |
| 85 "mock_input_method.cc", | 85 "mock_input_method.cc", |
| 86 "mock_input_method.h", | 86 "mock_input_method.h", |
| 87 "remote_input_method_delegate_win.h", | 87 "remote_input_method_delegate_win.h", |
| 88 "remote_input_method_win.cc", | 88 "remote_input_method_win.cc", |
| 89 "remote_input_method_win.h", | 89 "remote_input_method_win.h", |
| 90 "text_input_client.cc", | 90 "text_input_client.cc", |
| 91 "text_input_client.h", | 91 "text_input_client.h", |
| 92 "text_input_focus_manager.cc", | |
| 93 "text_input_focus_manager.h", | |
| 94 "text_input_type.h", | 92 "text_input_type.h", |
| 95 "ui_base_ime_export.h", | 93 "ui_base_ime_export.h", |
| 96 "win/imm32_manager.cc", | 94 "win/imm32_manager.cc", |
| 97 "win/imm32_manager.h", | 95 "win/imm32_manager.h", |
| 98 "win/tsf_input_scope.cc", | 96 "win/tsf_input_scope.cc", |
| 99 "win/tsf_input_scope.h", | 97 "win/tsf_input_scope.h", |
| 100 ] | 98 ] |
| 101 | 99 |
| 102 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 100 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 103 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 101 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 libs = [ "imm32.lib" ] | 170 libs = [ "imm32.lib" ] |
| 173 } | 171 } |
| 174 | 172 |
| 175 if (use_ozone) { | 173 if (use_ozone) { |
| 176 deps += [ | 174 deps += [ |
| 177 "//ui/ozone", | 175 "//ui/ozone", |
| 178 "//ui/events/ozone:events_ozone_layout", | 176 "//ui/events/ozone:events_ozone_layout", |
| 179 ] | 177 ] |
| 180 } | 178 } |
| 181 } | 179 } |
| OLD | NEW |