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

Side by Side Diff: views/views.gyp

Issue 6688049: New InputMethod api for Views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update. Created 9 years, 9 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 | Annotate | Revision Log
« views/ime/input_method_win.cc ('K') | « views/view.cc ('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 9
10 'conditions': [ 10 'conditions': [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ['exclude', '\\.mm?$'], 42 ['exclude', '\\.mm?$'],
43 ], 43 ],
44 }], 44 }],
45 ['OS=="win"', {'sources/': [ 45 ['OS=="win"', {'sources/': [
46 ['include', '_(win)\\.cc$'], 46 ['include', '_(win)\\.cc$'],
47 ['include', '/win/'], 47 ['include', '/win/'],
48 ['include', '/win_[^/]*\\.cc$'], 48 ['include', '/win_[^/]*\\.cc$'],
49 ]}], 49 ]}],
50 ['touchui==0', {'sources/': [ 50 ['touchui==0', {'sources/': [
51 ['exclude', 'events/event_x.cc$'], 51 ['exclude', 'events/event_x.cc$'],
52 ['exclude', 'ime/'],
53 ['exclude', 'native_menu_x.cc$'], 52 ['exclude', 'native_menu_x.cc$'],
54 ['exclude', 'native_menu_x.h$'], 53 ['exclude', 'native_menu_x.h$'],
55 ['exclude', 'touchui/'], 54 ['exclude', 'touchui/'],
56 ['exclude', '_(touch)\\.cc$'], 55 ['exclude', '_(touch)\\.cc$'],
57 ]}], 56 ]}],
58 ], 57 ],
59 }, 58 },
60 'targets': [ 59 'targets': [
61 { 60 {
62 'target_name': 'views', 61 'target_name': 'views',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 'focus/focus_manager.h', 277 'focus/focus_manager.h',
279 'focus/focus_search.cc', 278 'focus/focus_search.cc',
280 'focus/focus_search.h', 279 'focus/focus_search.h',
281 'focus/focus_util_win.cc', 280 'focus/focus_util_win.cc',
282 'focus/focus_util_win.h', 281 'focus/focus_util_win.h',
283 'focus/view_storage.cc', 282 'focus/view_storage.cc',
284 'focus/view_storage.h', 283 'focus/view_storage.h',
285 'ime/ibus_ime_context.cc', 284 'ime/ibus_ime_context.cc',
286 'ime/ime_context.cc', 285 'ime/ime_context.cc',
287 'ime/ime_context.h', 286 'ime/ime_context.h',
287 'ime/input_method.h',
288 'ime/input_method_delegate.h',
289 'ime/input_method_gtk.cc',
290 'ime/input_method_gtk.h',
291 'ime/input_method_win.cc',
292 'ime/input_method_win.h',
293 'ime/text_input_client.h',
288 'layout/box_layout.cc', 294 'layout/box_layout.cc',
289 'layout/box_layout.h', 295 'layout/box_layout.h',
290 'layout/fill_layout.cc', 296 'layout/fill_layout.cc',
291 'layout/fill_layout.h', 297 'layout/fill_layout.h',
292 'layout/grid_layout.cc', 298 'layout/grid_layout.cc',
293 'layout/grid_layout.h', 299 'layout/grid_layout.h',
294 'layout/layout_constants.h', 300 'layout/layout_constants.h',
295 'layout/layout_manager.cc', 301 'layout/layout_manager.cc',
296 'layout/layout_manager.h', 302 'layout/layout_manager.h',
297 'metrics.cc', 303 'metrics.cc',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 ['exclude', 'touchui/touch_factory.h'], 440 ['exclude', 'touchui/touch_factory.h'],
435 ], 441 ],
436 }], 442 }],
437 ['"<!@(<(pkg-config) --atleast-version=1.3.99 ibus-1.0 || echo $?)"! =""', { 443 ['"<!@(<(pkg-config) --atleast-version=1.3.99 ibus-1.0 || echo $?)"! =""', {
438 'sources/': [ 444 'sources/': [
439 ['exclude', 'ime/ibus_ime_context.cc'], 445 ['exclude', 'ime/ibus_ime_context.cc'],
440 ], 446 ],
441 'defines': ['USE_DUMMY_IME_CONTEXT'], 447 'defines': ['USE_DUMMY_IME_CONTEXT'],
442 }], 448 }],
443 ], 449 ],
450 }, { # else: touchui != 1
451 'sources!': [
452 'ime/ibus_ime_context.cc',
453 'ime/ime_context.cc',
454 'ime/ime_context.h',
455 ],
444 }], 456 }],
445 ['OS=="win"', { 457 ['OS=="win"', {
446 'sources!': [ 458 'sources!': [
447 'controls/slider/slider.cc', 459 'controls/slider/slider.cc',
448 'controls/slider/slider.h', 460 'controls/slider/slider.h',
449 'controls/slider/native_slider_wrapper.h', 461 'controls/slider/native_slider_wrapper.h',
450 ], 462 ],
451 'include_dirs': [ 463 'include_dirs': [
452 '<(DEPTH)/third_party/wtl/include', 464 '<(DEPTH)/third_party/wtl/include',
453 ], 465 ],
(...skipping 22 matching lines...) Expand all
476 'animation/bounds_animator_unittest.cc', 488 'animation/bounds_animator_unittest.cc',
477 'controls/label_unittest.cc', 489 'controls/label_unittest.cc',
478 'controls/progress_bar_unittest.cc', 490 'controls/progress_bar_unittest.cc',
479 'controls/single_split_view_unittest.cc', 491 'controls/single_split_view_unittest.cc',
480 'controls/tabbed_pane/tabbed_pane_unittest.cc', 492 'controls/tabbed_pane/tabbed_pane_unittest.cc',
481 'controls/table/table_view_unittest.cc', 493 'controls/table/table_view_unittest.cc',
482 'controls/textfield/native_textfield_views_unittest.cc', 494 'controls/textfield/native_textfield_views_unittest.cc',
483 'controls/textfield/textfield_views_model_unittest.cc', 495 'controls/textfield/textfield_views_model_unittest.cc',
484 'focus/accelerator_handler_gtk_unittest.cc', 496 'focus/accelerator_handler_gtk_unittest.cc',
485 'focus/focus_manager_unittest.cc', 497 'focus/focus_manager_unittest.cc',
498 'ime/mock_input_method.cc',
499 'ime/mock_input_method.h',
486 'layout/grid_layout_unittest.cc', 500 'layout/grid_layout_unittest.cc',
487 'layout/box_layout_unittest.cc', 501 'layout/box_layout_unittest.cc',
488 'test/views_test_base.cc', 502 'test/views_test_base.cc',
489 'test/views_test_base.h', 503 'test/views_test_base.h',
490 'run_all_unittests.cc', 504 'run_all_unittests.cc',
491 'test/test_views_delegate.cc', 505 'test/test_views_delegate.cc',
492 'test/test_views_delegate.h', 506 'test/test_views_delegate.h',
493 'view_unittest.cc', 507 'view_unittest.cc',
494 'widget/native_widget_test_utils.h', 508 'widget/native_widget_test_utils.h',
495 'widget/native_widget_test_utils_gtk.cc', 509 'widget/native_widget_test_utils_gtk.cc',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 ], 624 ],
611 }, 625 },
612 ], 626 ],
613 } 627 }
614 628
615 # Local Variables: 629 # Local Variables:
616 # tab-width:2 630 # tab-width:2
617 # indent-tabs-mode:nil 631 # indent-tabs-mode:nil
618 # End: 632 # End:
619 # vim: set expandtab tabstop=2 shiftwidth=2: 633 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« views/ime/input_method_win.cc ('K') | « views/view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698