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

Side by Side Diff: ui/ui.gyp

Issue 8659033: IME (input method editor) support for Aura, part 1 of 3: Add ui/base/ime/ classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, review fix Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « ui/base/ime/text_input_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'base/gtk/owned_widget_gtk.cc', 124 'base/gtk/owned_widget_gtk.cc',
125 'base/gtk/owned_widget_gtk.h', 125 'base/gtk/owned_widget_gtk.h',
126 'base/gtk/tooltip_window_gtk.cc', 126 'base/gtk/tooltip_window_gtk.cc',
127 'base/gtk/tooltip_window_gtk.h', 127 'base/gtk/tooltip_window_gtk.h',
128 'base/hit_test.h', 128 'base/hit_test.h',
129 'base/ime/character_composer.cc', 129 'base/ime/character_composer.cc',
130 'base/ime/character_composer.h', 130 'base/ime/character_composer.h',
131 'base/ime/composition_text.cc', 131 'base/ime/composition_text.cc',
132 'base/ime/composition_text.h', 132 'base/ime/composition_text.h',
133 'base/ime/composition_underline.h', 133 'base/ime/composition_underline.h',
134 'base/ime/input_method.h',
135 'base/ime/input_method_base.cc',
136 'base/ime/input_method_base.h',
137 'base/ime/input_method_delegate.h',
138 'base/ime/input_method_ibus.cc',
139 'base/ime/input_method_ibus.h',
140 'base/ime/mock_input_method.cc',
141 'base/ime/mock_input_method.h',
134 'base/ime/text_input_client.cc', 142 'base/ime/text_input_client.cc',
135 'base/ime/text_input_client.h', 143 'base/ime/text_input_client.h',
136 'base/ime/text_input_type.h', 144 'base/ime/text_input_type.h',
137 'base/keycodes/keyboard_code_conversion.cc', 145 'base/keycodes/keyboard_code_conversion.cc',
138 'base/keycodes/keyboard_code_conversion.h', 146 'base/keycodes/keyboard_code_conversion.h',
139 'base/keycodes/keyboard_code_conversion_gtk.cc', 147 'base/keycodes/keyboard_code_conversion_gtk.cc',
140 'base/keycodes/keyboard_code_conversion_gtk.h', 148 'base/keycodes/keyboard_code_conversion_gtk.h',
141 'base/keycodes/keyboard_code_conversion_mac.h', 149 'base/keycodes/keyboard_code_conversion_mac.h',
142 'base/keycodes/keyboard_code_conversion_mac.mm', 150 'base/keycodes/keyboard_code_conversion_mac.mm',
143 'base/keycodes/keyboard_code_conversion_win.cc', 151 'base/keycodes/keyboard_code_conversion_win.cc',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 ['exclude', 'base/x/active_window_watcher_x.h'], 357 ['exclude', 'base/x/active_window_watcher_x.h'],
350 ['exclude', 'base/x/active_window_watcher_x_observer.h'], 358 ['exclude', 'base/x/active_window_watcher_x_observer.h'],
351 ['exclude', 'base/x/root_window_property_watcher_x.cc'], 359 ['exclude', 'base/x/root_window_property_watcher_x.cc'],
352 ['exclude', 'base/x/root_window_property_watcher_x.h'], 360 ['exclude', 'base/x/root_window_property_watcher_x.h'],
353 ['exclude', 'base/x/work_area_watcher_x.cc'], 361 ['exclude', 'base/x/work_area_watcher_x.cc'],
354 ['exclude', 'base/x/work_area_watcher_x.h'], 362 ['exclude', 'base/x/work_area_watcher_x.h'],
355 ['exclude', 'base/x/work_area_watcher_x_observer.h'], 363 ['exclude', 'base/x/work_area_watcher_x_observer.h'],
356 ], 364 ],
357 }, { # use_aura!=1 365 }, { # use_aura!=1
358 'sources!': [ 366 'sources!': [
367 'base/ime/input_method_ibus.cc',
368 'base/ime/input_method_ibus.h',
369 'base/ime/mock_input_method.cc',
370 'base/ime/mock_input_method.h',
359 'gfx/native_theme_aura.cc', 371 'gfx/native_theme_aura.cc',
360 'gfx/native_theme_aura.h', 372 'gfx/native_theme_aura.h',
361 ] 373 ]
362 }], 374 }],
363 ['use_aura==1 and OS=="win"', { 375 ['use_aura==1 and OS=="win"', {
364 'sources/': [ 376 'sources/': [
365 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], 377 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'],
366 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], 378 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'],
367 ['exclude', 'gfx/native_theme_win.cc'], 379 ['exclude', 'gfx/native_theme_win.cc'],
368 ['exclude', 'gfx/native_theme_win.h'], 380 ['exclude', 'gfx/native_theme_win.h'],
369 ['exclude', 'gfx/path_win.cc'], 381 ['exclude', 'gfx/path_win.cc'],
370 ], 382 ],
371 }], 383 }],
384 ['use_ibus==1', {
385 'dependencies': [
386 '../build/linux/system.gyp:ibus',
387 ],
388 'sources/': [
389 ['exclude', 'base/ime/mock_input_method.cc'],
390 ['exclude', 'base/ime/mock_input_method.h'],
391 ],
392 }, { # else: use_ibus != 1
393 'sources/': [
394 ['exclude', 'base/ime/input_method_ibus.cc'],
395 ['exclude', 'base/ime/input_method_ibus.h'],
396 ],
397 }],
398
372 ['use_glib == 1', { 399 ['use_glib == 1', {
373 'dependencies': [ 400 'dependencies': [
374 # font_gtk.cc uses fontconfig. 401 # font_gtk.cc uses fontconfig.
375 '../build/linux/system.gyp:fontconfig', 402 '../build/linux/system.gyp:fontconfig',
376 '../build/linux/system.gyp:glib', 403 '../build/linux/system.gyp:glib',
377 '../build/linux/system.gyp:pangocairo', 404 '../build/linux/system.gyp:pangocairo',
378 '../build/linux/system.gyp:x11', 405 '../build/linux/system.gyp:x11',
379 '../build/linux/system.gyp:xext', 406 '../build/linux/system.gyp:xext',
380 '../build/linux/system.gyp:xfixes', 407 '../build/linux/system.gyp:xfixes',
381 ], 408 ],
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 674 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
648 'os.chmod(\'<(ui_copy_dest)\', 0700)' 675 'os.chmod(\'<(ui_copy_dest)\', 0700)'
649 ] 676 ]
650 } 677 }
651 ], 678 ],
652 }, 679 },
653 ], 680 ],
654 }], 681 }],
655 ], 682 ],
656 } 683 }
OLDNEW
« no previous file with comments | « ui/base/ime/text_input_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698