| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "input_method_win.h", | 78 "input_method_win.h", |
| 79 "linux/fake_input_method_context.cc", | 79 "linux/fake_input_method_context.cc", |
| 80 "linux/fake_input_method_context.h", | 80 "linux/fake_input_method_context.h", |
| 81 "linux/fake_input_method_context_factory.cc", | 81 "linux/fake_input_method_context_factory.cc", |
| 82 "linux/fake_input_method_context_factory.h", | 82 "linux/fake_input_method_context_factory.h", |
| 83 "linux/linux_input_method_context.h", | 83 "linux/linux_input_method_context.h", |
| 84 "linux/linux_input_method_context_factory.cc", | 84 "linux/linux_input_method_context_factory.cc", |
| 85 "linux/linux_input_method_context_factory.h", | 85 "linux/linux_input_method_context_factory.h", |
| 86 "mock_input_method.cc", | 86 "mock_input_method.cc", |
| 87 "mock_input_method.h", | 87 "mock_input_method.h", |
| 88 "remote_input_method_delegate_win.h", | |
| 89 "remote_input_method_win.cc", | |
| 90 "remote_input_method_win.h", | |
| 91 "text_input_client.cc", | 88 "text_input_client.cc", |
| 92 "text_input_client.h", | 89 "text_input_client.h", |
| 93 "text_input_type.h", | 90 "text_input_type.h", |
| 94 "ui_base_ime_export.h", | 91 "ui_base_ime_export.h", |
| 95 "win/imm32_manager.cc", | 92 "win/imm32_manager.cc", |
| 96 "win/imm32_manager.h", | 93 "win/imm32_manager.h", |
| 97 "win/tsf_input_scope.cc", | 94 "win/tsf_input_scope.cc", |
| 98 "win/tsf_input_scope.h", | 95 "win/tsf_input_scope.h", |
| 99 ] | 96 ] |
| 100 | 97 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 libs = [ "imm32.lib" ] | 176 libs = [ "imm32.lib" ] |
| 180 } | 177 } |
| 181 | 178 |
| 182 if (use_ozone) { | 179 if (use_ozone) { |
| 183 deps += [ | 180 deps += [ |
| 184 "//ui/events/ozone:events_ozone_layout", | 181 "//ui/events/ozone:events_ozone_layout", |
| 185 "//ui/ozone", | 182 "//ui/ozone", |
| 186 ] | 183 ] |
| 187 } | 184 } |
| 188 } | 185 } |
| OLD | NEW |