Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: ui/base/ime/ui_base_ime.gyp

Issue 2064053002: Move ui/events/linux/* to ui/base/ime/linux/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor7_correct_text_edit_command_aura_typo
Patch Set: Rebase. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/base/ime/linux/text_edit_key_bindings_delegate_auralinux.cc ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'input_method_observer.h', 107 'input_method_observer.h',
108 'input_method_win.cc', 108 'input_method_win.cc',
109 'input_method_win.h', 109 'input_method_win.h',
110 'linux/fake_input_method_context.cc', 110 'linux/fake_input_method_context.cc',
111 'linux/fake_input_method_context.h', 111 'linux/fake_input_method_context.h',
112 'linux/fake_input_method_context_factory.cc', 112 'linux/fake_input_method_context_factory.cc',
113 'linux/fake_input_method_context_factory.h', 113 'linux/fake_input_method_context_factory.h',
114 'linux/linux_input_method_context.h', 114 'linux/linux_input_method_context.h',
115 'linux/linux_input_method_context_factory.cc', 115 'linux/linux_input_method_context_factory.cc',
116 'linux/linux_input_method_context_factory.h', 116 'linux/linux_input_method_context_factory.h',
117 'linux/text_edit_command_auralinux.cc',
118 'linux/text_edit_command_auralinux.h',
119 'linux/text_edit_key_bindings_delegate_auralinux.cc',
120 'linux/text_edit_key_bindings_delegate_auralinux.h',
117 'mock_input_method.cc', 121 'mock_input_method.cc',
118 'mock_input_method.h', 122 'mock_input_method.h',
119 'text_edit_commands.h', 123 'text_edit_commands.h',
120 'text_input_client.cc', 124 'text_input_client.cc',
121 'text_input_client.h', 125 'text_input_client.h',
122 'ui_base_ime_export.h', 126 'ui_base_ime_export.h',
123 'win/imm32_manager.cc', 127 'win/imm32_manager.cc',
124 'win/imm32_manager.h', 128 'win/imm32_manager.h',
125 'win/tsf_input_scope.cc', 129 'win/tsf_input_scope.cc',
126 'win/tsf_input_scope.h', 130 'win/tsf_input_scope.h',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 'input_method_factory.cc', 163 'input_method_factory.cc',
160 'input_method_factory.h', 164 'input_method_factory.h',
161 'input_method_minimal.cc', 165 'input_method_minimal.cc',
162 'input_method_minimal.h', 166 'input_method_minimal.h',
163 ], 167 ],
164 }], 168 }],
165 ['chromeos==1', { 169 ['chromeos==1', {
166 'dependencies': [ 170 'dependencies': [
167 '../../../chromeos/chromeos.gyp:chromeos', 171 '../../../chromeos/chromeos.gyp:chromeos',
168 ], 172 ],
173 'sources!': [
174 'linux/text_edit_command_auralinux.cc',
175 'linux/text_edit_command_auralinux.h',
176 'linux/text_edit_key_bindings_delegate_auralinux.cc',
177 'linux/text_edit_key_bindings_delegate_auralinux.h',
178 ],
169 }], 179 }],
170 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', { 180 ['use_aura==0 or (desktop_linux==0 and use_ozone==0)', {
171 'sources!': [ 181 'sources!': [
172 'input_method_auralinux.cc', 182 'input_method_auralinux.cc',
173 'input_method_auralinux.h', 183 'input_method_auralinux.h',
174 'linux/fake_input_method_context.cc', 184 'linux/fake_input_method_context.cc',
175 'linux/fake_input_method_context.h', 185 'linux/fake_input_method_context.h',
176 'linux/fake_input_method_context_factory.cc', 186 'linux/fake_input_method_context_factory.cc',
177 'linux/fake_input_method_context_factory.h', 187 'linux/fake_input_method_context_factory.h',
178 'linux/linux_input_method_context.h', 188 'linux/linux_input_method_context.h',
179 'linux/linux_input_method_context_factory.cc', 189 'linux/linux_input_method_context_factory.cc',
180 'linux/linux_input_method_context_factory.h', 190 'linux/linux_input_method_context_factory.h',
181 ], 191 ],
182 }], 192 }],
183 ['use_x11==0', { 193 ['use_x11==0', {
184 'sources!': [ 194 'sources!': [
185 'composition_text_util_pango.cc', 195 'composition_text_util_pango.cc',
186 'composition_text_util_pango.h', 196 'composition_text_util_pango.h',
187 ], 197 ],
188 }], 198 }],
189 ], 199 ],
190 }, 200 },
191 ], 201 ],
192 } 202 }
OLDNEW
« no previous file with comments | « ui/base/ime/linux/text_edit_key_bindings_delegate_auralinux.cc ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698