OLD | NEW |
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 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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.cc', |
| 135 'base/ime/input_method.h', |
| 136 'base/ime/input_method_base.cc', |
| 137 'base/ime/input_method_base.h', |
| 138 'base/ime/input_method_delegate.h', |
| 139 'base/ime/input_method_ibus.cc', |
| 140 'base/ime/input_method_ibus.h', |
| 141 'base/ime/mock_input_method.cc', |
| 142 'base/ime/mock_input_method.h', |
134 'base/ime/text_input_client.cc', | 143 'base/ime/text_input_client.cc', |
135 'base/ime/text_input_client.h', | 144 'base/ime/text_input_client.h', |
136 'base/ime/text_input_type.h', | 145 'base/ime/text_input_type.h', |
137 'base/keycodes/keyboard_code_conversion.cc', | 146 'base/keycodes/keyboard_code_conversion.cc', |
138 'base/keycodes/keyboard_code_conversion.h', | 147 'base/keycodes/keyboard_code_conversion.h', |
139 'base/keycodes/keyboard_code_conversion_gtk.cc', | 148 'base/keycodes/keyboard_code_conversion_gtk.cc', |
140 'base/keycodes/keyboard_code_conversion_gtk.h', | 149 'base/keycodes/keyboard_code_conversion_gtk.h', |
141 'base/keycodes/keyboard_code_conversion_mac.h', | 150 'base/keycodes/keyboard_code_conversion_mac.h', |
142 'base/keycodes/keyboard_code_conversion_mac.mm', | 151 'base/keycodes/keyboard_code_conversion_mac.mm', |
143 'base/keycodes/keyboard_code_conversion_win.cc', | 152 'base/keycodes/keyboard_code_conversion_win.cc', |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 ['exclude', 'gfx/screen_win.cc'], | 351 ['exclude', 'gfx/screen_win.cc'], |
343 ['exclude', 'base/view_prop.cc'], | 352 ['exclude', 'base/view_prop.cc'], |
344 ['exclude', 'base/view_prop.h'], | 353 ['exclude', 'base/view_prop.h'], |
345 ['exclude', 'base/win/mouse_wheel_util.cc'], | 354 ['exclude', 'base/win/mouse_wheel_util.cc'], |
346 ['exclude', 'base/win/mouse_wheel_util.h'], | 355 ['exclude', 'base/win/mouse_wheel_util.h'], |
347 ['exclude', 'base/x/active_window_watcher_x.cc'], | 356 ['exclude', 'base/x/active_window_watcher_x.cc'], |
348 ['exclude', 'base/x/active_window_watcher_x.h'], | 357 ['exclude', 'base/x/active_window_watcher_x.h'], |
349 ], | 358 ], |
350 }, { # use_aura!=1 | 359 }, { # use_aura!=1 |
351 'sources!': [ | 360 'sources!': [ |
| 361 'base/ime/input_method_ibus.cc', |
| 362 'base/ime/input_method_ibus.h', |
| 363 'base/ime/mock_input_method.cc', |
| 364 'base/ime/mock_input_method.h', |
352 'gfx/native_theme_aura.cc', | 365 'gfx/native_theme_aura.cc', |
353 'gfx/native_theme_aura.h', | 366 'gfx/native_theme_aura.h', |
354 ] | 367 ] |
355 }], | 368 }], |
356 ['use_aura==1 and OS=="win"', { | 369 ['use_aura==1 and OS=="win"', { |
357 'sources/': [ | 370 'sources/': [ |
358 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], | 371 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.cc'], |
359 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], | 372 ['exclude', 'base/dragdrop/os_exchange_data_provider_win.h'], |
360 ['exclude', 'gfx/native_theme_win.cc'], | 373 ['exclude', 'gfx/native_theme_win.cc'], |
361 ['exclude', 'gfx/native_theme_win.h'], | 374 ['exclude', 'gfx/native_theme_win.h'], |
362 ['exclude', 'gfx/path_win.cc'], | 375 ['exclude', 'gfx/path_win.cc'], |
363 ], | 376 ], |
364 }], | 377 }], |
| 378 ['use_ibus==1', { |
| 379 'dependencies': [ |
| 380 '../build/linux/system.gyp:ibus', |
| 381 ], |
| 382 'sources/': [ |
| 383 ['exclude', 'base/ime/mock_input_method.cc'], |
| 384 ['exclude', 'base/ime/mock_input_method.h'], |
| 385 ], |
| 386 }, { # else: use_ibus != 1 |
| 387 'sources/': [ |
| 388 ['exclude', 'base/ime/input_method_ibus.cc'], |
| 389 ['exclude', 'base/ime/input_method_ibus.h'], |
| 390 ], |
| 391 }], |
| 392 |
365 ['use_glib == 1', { | 393 ['use_glib == 1', { |
366 'dependencies': [ | 394 'dependencies': [ |
367 # font_gtk.cc uses fontconfig. | 395 # font_gtk.cc uses fontconfig. |
368 '../build/linux/system.gyp:fontconfig', | 396 '../build/linux/system.gyp:fontconfig', |
369 '../build/linux/system.gyp:glib', | 397 '../build/linux/system.gyp:glib', |
370 '../build/linux/system.gyp:pangocairo', | 398 '../build/linux/system.gyp:pangocairo', |
371 '../build/linux/system.gyp:x11', | 399 '../build/linux/system.gyp:x11', |
372 '../build/linux/system.gyp:xext', | 400 '../build/linux/system.gyp:xext', |
373 '../build/linux/system.gyp:xfixes', | 401 '../build/linux/system.gyp:xfixes', |
374 ], | 402 ], |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 670 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
643 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 671 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
644 ] | 672 ] |
645 } | 673 } |
646 ], | 674 ], |
647 }, | 675 }, |
648 ], | 676 ], |
649 }], | 677 }], |
650 ], | 678 ], |
651 } | 679 } |
OLD | NEW |