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

Side by Side Diff: ui/views/views.gyp

Issue 322893005: MacViews: Add WidgetEventGenerator to abstract platform-specific event generation for tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: self review + related fix for r283070 Created 6 years, 5 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'target_defaults': { 8 'target_defaults': {
9 'conditions': [ 9 'conditions': [
10 ['use_aura==1', { 10 ['use_aura==1', {
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 'test/ui_controls_factory_desktop_aurax11.cc', 622 'test/ui_controls_factory_desktop_aurax11.cc',
623 'test/ui_controls_factory_desktop_aurax11.h', 623 'test/ui_controls_factory_desktop_aurax11.h',
624 'test/views_test_base.cc', 624 'test/views_test_base.cc',
625 'test/views_test_base.h', 625 'test/views_test_base.h',
626 'test/views_test_helper.cc', 626 'test/views_test_helper.cc',
627 'test/views_test_helper.h', 627 'test/views_test_helper.h',
628 'test/views_test_helper_aura.cc', 628 'test/views_test_helper_aura.cc',
629 'test/views_test_helper_aura.h', 629 'test/views_test_helper_aura.h',
630 'test/views_test_helper_mac.h', 630 'test/views_test_helper_mac.h',
631 'test/views_test_helper_mac.mm', 631 'test/views_test_helper_mac.mm',
632 'test/widget_event_generator.h',
633 'test/widget_event_generator_aura.cc',
634 'test/widget_event_generator_mac.mm',
632 'test/widget_test.cc', 635 'test/widget_test.cc',
633 'test/widget_test.h', 636 'test/widget_test.h',
634 'test/widget_test_aura.cc', 637 'test/widget_test_aura.cc',
635 'test/widget_test_mac.mm', 638 'test/widget_test_mac.mm',
636 'test/x11_property_change_waiter.cc', 639 'test/x11_property_change_waiter.cc',
637 'test/x11_property_change_waiter.h', 640 'test/x11_property_change_waiter.h',
638 ], 641 ],
639 'conditions': [ 642 'conditions': [
640 ['chromeos==1', { 643 ['chromeos==1', {
641 'sources!': [ 644 'sources!': [
(...skipping 20 matching lines...) Expand all
662 '../../third_party/icu/icu.gyp:icui18n', 665 '../../third_party/icu/icu.gyp:icui18n',
663 '../../third_party/icu/icu.gyp:icuuc', 666 '../../third_party/icu/icu.gyp:icuuc',
664 '../../url/url.gyp:url_lib', 667 '../../url/url.gyp:url_lib',
665 '../accessibility/accessibility.gyp:accessibility', 668 '../accessibility/accessibility.gyp:accessibility',
666 '../base/ui_base.gyp:ui_base', 669 '../base/ui_base.gyp:ui_base',
667 '../base/ui_base.gyp:ui_base_test_support', 670 '../base/ui_base.gyp:ui_base_test_support',
668 '../compositor/compositor.gyp:compositor', 671 '../compositor/compositor.gyp:compositor',
669 '../compositor/compositor.gyp:compositor_test_support', 672 '../compositor/compositor.gyp:compositor_test_support',
670 '../events/events.gyp:events', 673 '../events/events.gyp:events',
671 '../events/events.gyp:events_base', 674 '../events/events.gyp:events_base',
675 '../events/events.gyp:events_test_support',
672 '../gfx/gfx.gyp:gfx', 676 '../gfx/gfx.gyp:gfx',
673 '../gfx/gfx.gyp:gfx_geometry', 677 '../gfx/gfx.gyp:gfx_geometry',
674 '../resources/ui_resources.gyp:ui_resources', 678 '../resources/ui_resources.gyp:ui_resources',
675 '../resources/ui_resources.gyp:ui_test_pak', 679 '../resources/ui_resources.gyp:ui_test_pak',
676 '../strings/ui_strings.gyp:ui_strings', 680 '../strings/ui_strings.gyp:ui_strings',
677 'views', 681 'views',
678 'views_test_support', 682 'views_test_support',
679 ], 683 ],
680 'include_dirs': [ 684 'include_dirs': [
681 '..', 685 '..',
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 ['use_x11==1', { 812 ['use_x11==1', {
809 'dependencies': [ 813 'dependencies': [
810 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 814 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
811 ], 815 ],
812 }], 816 }],
813 ['OS=="mac"', { 817 ['OS=="mac"', {
814 # views_unittests not yet compiling on Mac. http://crbug.com/378134 818 # views_unittests not yet compiling on Mac. http://crbug.com/378134
815 'sources!': [ 819 'sources!': [
816 'bubble/bubble_window_targeter_unittest.cc', 820 'bubble/bubble_window_targeter_unittest.cc',
817 'controls/button/custom_button_unittest.cc', 821 'controls/button/custom_button_unittest.cc',
818 'controls/button/menu_button_unittest.cc',
819 'controls/native/native_view_host_unittest.cc', 822 'controls/native/native_view_host_unittest.cc',
820 'controls/menu/menu_controller_unittest.cc', 823 'controls/menu/menu_controller_unittest.cc',
821 'ime/input_method_bridge_unittest.cc', 824 'ime/input_method_bridge_unittest.cc',
822 'focus/focus_manager_unittest.cc', 825 'focus/focus_manager_unittest.cc',
823 'widget/window_reorderer_unittest.cc', 826 'widget/window_reorderer_unittest.cc',
824 'widget/widget_unittest.cc',
825 ] 827 ]
826 }], 828 }],
827 ], 829 ],
828 }, # target_name: views_unittests 830 }, # target_name: views_unittests
829 ], # targets 831 ], # targets
830 'conditions': [ 832 'conditions': [
831 ['OS=="mac"', { 833 ['OS=="mac"', {
832 'targets': [ 834 'targets': [
833 { 835 {
834 'target_name': 'macviews_interactive_ui_tests', 836 'target_name': 'macviews_interactive_ui_tests',
(...skipping 12 matching lines...) Expand all
847 ], 849 ],
848 'sources': [ 850 'sources': [
849 'run_all_unittests.cc', 851 'run_all_unittests.cc',
850 'widget/native_widget_mac_interactive_uitest.mm', 852 'widget/native_widget_mac_interactive_uitest.mm',
851 ], 853 ],
852 }, # target_name: macviews_interactive_ui_tests 854 }, # target_name: macviews_interactive_ui_tests
853 ], # targets 855 ], # targets
854 }], 856 }],
855 ], # conditions 857 ], # conditions
856 } 858 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698