| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "chromeos/mock_ime_engine_handler.h", | 44 "chromeos/mock_ime_engine_handler.h", |
| 45 "chromeos/mock_ime_input_context_handler.cc", | 45 "chromeos/mock_ime_input_context_handler.cc", |
| 46 "chromeos/mock_ime_input_context_handler.h", | 46 "chromeos/mock_ime_input_context_handler.h", |
| 47 "composition_text.cc", | 47 "composition_text.cc", |
| 48 "composition_text.h", | 48 "composition_text.h", |
| 49 "composition_text_util_pango.cc", | 49 "composition_text_util_pango.cc", |
| 50 "composition_text_util_pango.h", | 50 "composition_text_util_pango.h", |
| 51 "composition_underline.h", | 51 "composition_underline.h", |
| 52 "ime_bridge.cc", | 52 "ime_bridge.cc", |
| 53 "ime_bridge.h", | 53 "ime_bridge.h", |
| 54 "ime_engine_handler_interface.cc", | |
| 55 "ime_engine_handler_interface.h", | 54 "ime_engine_handler_interface.h", |
| 56 "ime_engine_observer.h", | |
| 57 "ime_input_context_handler_interface.h", | 55 "ime_input_context_handler_interface.h", |
| 58 "infolist_entry.cc", | 56 "infolist_entry.cc", |
| 59 "infolist_entry.h", | 57 "infolist_entry.h", |
| 60 "input_method.h", | 58 "input_method.h", |
| 61 "input_method_auralinux.cc", | 59 "input_method_auralinux.cc", |
| 62 "input_method_auralinux.h", | 60 "input_method_auralinux.h", |
| 63 "input_method_base.cc", | 61 "input_method_base.cc", |
| 64 "input_method_base.h", | 62 "input_method_base.h", |
| 65 "input_method_chromeos.cc", | 63 "input_method_chromeos.cc", |
| 66 "input_method_chromeos.h", | 64 "input_method_chromeos.h", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 libs = [ "imm32.lib" ] | 177 libs = [ "imm32.lib" ] |
| 180 } | 178 } |
| 181 | 179 |
| 182 if (use_ozone) { | 180 if (use_ozone) { |
| 183 deps += [ | 181 deps += [ |
| 184 "//ui/events/ozone:events_ozone_layout", | 182 "//ui/events/ozone:events_ozone_layout", |
| 185 "//ui/ozone", | 183 "//ui/ozone", |
| 186 ] | 184 ] |
| 187 } | 185 } |
| 188 } | 186 } |
| OLD | NEW |