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 34 matching lines...) Loading... |
45 "chromeos/mock_ime_candidate_window_handler.h", | 45 "chromeos/mock_ime_candidate_window_handler.h", |
46 "chromeos/mock_ime_engine_handler.cc", | 46 "chromeos/mock_ime_engine_handler.cc", |
47 "chromeos/mock_ime_engine_handler.h", | 47 "chromeos/mock_ime_engine_handler.h", |
48 "chromeos/mock_ime_input_context_handler.cc", | 48 "chromeos/mock_ime_input_context_handler.cc", |
49 "chromeos/mock_ime_input_context_handler.h", | 49 "chromeos/mock_ime_input_context_handler.h", |
50 "composition_text.cc", | 50 "composition_text.cc", |
51 "composition_text.h", | 51 "composition_text.h", |
52 "composition_text_util_pango.cc", | 52 "composition_text_util_pango.cc", |
53 "composition_text_util_pango.h", | 53 "composition_text_util_pango.h", |
54 "composition_underline.h", | 54 "composition_underline.h", |
55 "dummy_input_method_delegate.cc", | |
56 "dummy_input_method_delegate.h", | |
57 "infolist_entry.cc", | 55 "infolist_entry.cc", |
58 "infolist_entry.h", | 56 "infolist_entry.h", |
59 "input_method.h", | 57 "input_method.h", |
60 "input_method_auralinux.cc", | 58 "input_method_auralinux.cc", |
61 "input_method_auralinux.h", | 59 "input_method_auralinux.h", |
62 "input_method_base.cc", | 60 "input_method_base.cc", |
63 "input_method_base.h", | 61 "input_method_base.h", |
64 "input_method_chromeos.cc", | 62 "input_method_chromeos.cc", |
65 "input_method_chromeos.h", | 63 "input_method_chromeos.h", |
66 "input_method_delegate.h", | 64 "input_method_delegate.h", |
(...skipping 103 matching lines...) Loading... |
170 libs = [ "imm32.lib" ] | 168 libs = [ "imm32.lib" ] |
171 } | 169 } |
172 | 170 |
173 if (use_ozone) { | 171 if (use_ozone) { |
174 deps += [ | 172 deps += [ |
175 "//ui/ozone", | 173 "//ui/ozone", |
176 "//ui/events/ozone:events_ozone_layout", | 174 "//ui/events/ozone:events_ozone_layout", |
177 ] | 175 ] |
178 } | 176 } |
179 } | 177 } |
OLD | NEW |