| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "ime_input_context_handler_interface.h", | 61 "ime_input_context_handler_interface.h", |
| 62 "infolist_entry.cc", | 62 "infolist_entry.cc", |
| 63 "infolist_entry.h", | 63 "infolist_entry.h", |
| 64 "input_method.h", | 64 "input_method.h", |
| 65 "input_method_auralinux.cc", | 65 "input_method_auralinux.cc", |
| 66 "input_method_auralinux.h", | 66 "input_method_auralinux.h", |
| 67 "input_method_base.cc", | 67 "input_method_base.cc", |
| 68 "input_method_base.h", | 68 "input_method_base.h", |
| 69 "input_method_chromeos.cc", | 69 "input_method_chromeos.cc", |
| 70 "input_method_chromeos.h", | 70 "input_method_chromeos.h", |
| 71 "input_method_delegate.cc", |
| 71 "input_method_delegate.h", | 72 "input_method_delegate.h", |
| 72 "input_method_factory.cc", | 73 "input_method_factory.cc", |
| 73 "input_method_factory.h", | 74 "input_method_factory.h", |
| 74 "input_method_initializer.cc", | 75 "input_method_initializer.cc", |
| 75 "input_method_initializer.h", | 76 "input_method_initializer.h", |
| 76 "input_method_mac.h", | 77 "input_method_mac.h", |
| 77 "input_method_mac.mm", | 78 "input_method_mac.mm", |
| 78 "input_method_minimal.cc", | 79 "input_method_minimal.cc", |
| 79 "input_method_minimal.h", | 80 "input_method_minimal.h", |
| 80 "input_method_observer.h", | 81 "input_method_observer.h", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 libs = [ "AppKit.framework" ] | 204 libs = [ "AppKit.framework" ] |
| 204 } | 205 } |
| 205 | 206 |
| 206 if (use_ozone) { | 207 if (use_ozone) { |
| 207 deps += [ | 208 deps += [ |
| 208 "//ui/events/ozone:events_ozone_layout", | 209 "//ui/events/ozone:events_ozone_layout", |
| 209 "//ui/ozone", | 210 "//ui/ozone", |
| 210 ] | 211 ] |
| 211 } | 212 } |
| 212 } | 213 } |
| OLD | NEW |