| 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 24 matching lines...) Expand all Loading... |
| 35 "chromeos/ime_keyboard_ozone.h", | 35 "chromeos/ime_keyboard_ozone.h", |
| 36 "chromeos/ime_keyboard_x11.cc", | 36 "chromeos/ime_keyboard_x11.cc", |
| 37 "chromeos/ime_keyboard_x11.h", | 37 "chromeos/ime_keyboard_x11.h", |
| 38 "chromeos/ime_keymap.cc", | 38 "chromeos/ime_keymap.cc", |
| 39 "chromeos/ime_keymap.h", | 39 "chromeos/ime_keymap.h", |
| 40 "chromeos/input_method_delegate.h", | 40 "chromeos/input_method_delegate.h", |
| 41 "chromeos/input_method_descriptor.cc", | 41 "chromeos/input_method_descriptor.cc", |
| 42 "chromeos/input_method_descriptor.h", | 42 "chromeos/input_method_descriptor.h", |
| 43 "chromeos/input_method_manager.cc", | 43 "chromeos/input_method_manager.cc", |
| 44 "chromeos/input_method_manager.h", | 44 "chromeos/input_method_manager.h", |
| 45 "chromeos/mock_component_extension_ime_manager.h", |
| 45 "chromeos/mock_component_extension_ime_manager_delegate.cc", | 46 "chromeos/mock_component_extension_ime_manager_delegate.cc", |
| 46 "chromeos/mock_component_extension_ime_manager_delegate.h", | 47 "chromeos/mock_component_extension_ime_manager_delegate.h", |
| 47 "chromeos/mock_ime_candidate_window_handler.cc", | 48 "chromeos/mock_ime_candidate_window_handler.cc", |
| 48 "chromeos/mock_ime_candidate_window_handler.h", | 49 "chromeos/mock_ime_candidate_window_handler.h", |
| 49 "chromeos/mock_ime_engine_handler.cc", | 50 "chromeos/mock_ime_engine_handler.cc", |
| 50 "chromeos/mock_ime_engine_handler.h", | 51 "chromeos/mock_ime_engine_handler.h", |
| 51 "composition_text.cc", | 52 "composition_text.cc", |
| 52 "composition_text.h", | 53 "composition_text.h", |
| 53 "composition_text_util_pango.cc", | 54 "composition_text_util_pango.cc", |
| 54 "composition_text_util_pango.h", | 55 "composition_text_util_pango.h", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 libs = [ "AppKit.framework" ] | 200 libs = [ "AppKit.framework" ] |
| 200 } | 201 } |
| 201 | 202 |
| 202 if (use_ozone) { | 203 if (use_ozone) { |
| 203 deps += [ | 204 deps += [ |
| 204 "//ui/events/ozone:events_ozone_layout", | 205 "//ui/events/ozone:events_ozone_layout", |
| 205 "//ui/ozone", | 206 "//ui/ozone", |
| 206 ] | 207 ] |
| 207 } | 208 } |
| 208 } | 209 } |
| OLD | NEW |