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

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: cull orthogonal stuff, add WidgetTest.MouseEventTypesViaGenerator Created 6 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 | 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 'test/test_widget_observer.cc', 618 'test/test_widget_observer.cc',
619 'test/test_widget_observer.h', 619 'test/test_widget_observer.h',
620 'test/ui_controls_factory_desktop_aurax11.cc', 620 'test/ui_controls_factory_desktop_aurax11.cc',
621 'test/ui_controls_factory_desktop_aurax11.h', 621 'test/ui_controls_factory_desktop_aurax11.h',
622 'test/views_test_base.cc', 622 'test/views_test_base.cc',
623 'test/views_test_base.h', 623 'test/views_test_base.h',
624 'test/views_test_helper.cc', 624 'test/views_test_helper.cc',
625 'test/views_test_helper.h', 625 'test/views_test_helper.h',
626 'test/views_test_helper_aura.cc', 626 'test/views_test_helper_aura.cc',
627 'test/views_test_helper_aura.h', 627 'test/views_test_helper_aura.h',
628 'test/widget_event_generator.h',
629 'test/widget_event_generator_aura.cc',
630 'test/widget_event_generator_mac.mm',
628 'test/widget_test.cc', 631 'test/widget_test.cc',
629 'test/widget_test.h', 632 'test/widget_test.h',
633 'test/widget_test_aura.cc',
634 'test/widget_test_mac.mm',
630 'test/x11_property_change_waiter.cc', 635 'test/x11_property_change_waiter.cc',
631 'test/x11_property_change_waiter.h', 636 'test/x11_property_change_waiter.h',
632 ], 637 ],
633 'conditions': [ 638 'conditions': [
634 ['chromeos==1', { 639 ['chromeos==1', {
635 'sources!': [ 640 'sources!': [
636 'test/ui_controls_factory_desktop_aurax11.cc', 641 'test/ui_controls_factory_desktop_aurax11.cc',
637 'test/ui_controls_factory_desktop_aurax11.h', 642 'test/ui_controls_factory_desktop_aurax11.h',
638 ], 643 ],
639 }], 644 }],
(...skipping 16 matching lines...) Expand all
656 '../../third_party/icu/icu.gyp:icui18n', 661 '../../third_party/icu/icu.gyp:icui18n',
657 '../../third_party/icu/icu.gyp:icuuc', 662 '../../third_party/icu/icu.gyp:icuuc',
658 '../../url/url.gyp:url_lib', 663 '../../url/url.gyp:url_lib',
659 '../accessibility/accessibility.gyp:accessibility', 664 '../accessibility/accessibility.gyp:accessibility',
660 '../base/ui_base.gyp:ui_base', 665 '../base/ui_base.gyp:ui_base',
661 '../base/ui_base.gyp:ui_base_test_support', 666 '../base/ui_base.gyp:ui_base_test_support',
662 '../compositor/compositor.gyp:compositor', 667 '../compositor/compositor.gyp:compositor',
663 '../compositor/compositor.gyp:compositor_test_support', 668 '../compositor/compositor.gyp:compositor_test_support',
664 '../events/events.gyp:events', 669 '../events/events.gyp:events',
665 '../events/events.gyp:events_base', 670 '../events/events.gyp:events_base',
671 '../events/events.gyp:events_test_support',
666 '../gfx/gfx.gyp:gfx', 672 '../gfx/gfx.gyp:gfx',
667 '../gfx/gfx.gyp:gfx_geometry', 673 '../gfx/gfx.gyp:gfx_geometry',
668 '../resources/ui_resources.gyp:ui_resources', 674 '../resources/ui_resources.gyp:ui_resources',
669 '../resources/ui_resources.gyp:ui_test_pak', 675 '../resources/ui_resources.gyp:ui_test_pak',
670 '../strings/ui_strings.gyp:ui_strings', 676 '../strings/ui_strings.gyp:ui_strings',
671 'views', 677 'views',
672 'views_test_support', 678 'views_test_support',
673 ], 679 ],
674 'include_dirs': [ 680 'include_dirs': [
675 '..', 681 '..',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 ['use_x11==1', { 809 ['use_x11==1', {
804 'dependencies': [ 810 'dependencies': [
805 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 811 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
806 ], 812 ],
807 }], 813 }],
808 ['OS=="mac"', { 814 ['OS=="mac"', {
809 # views_unittests not yet compiling on Mac. http://crbug.com/378134 815 # views_unittests not yet compiling on Mac. http://crbug.com/378134
810 'sources!': [ 816 'sources!': [
811 'bubble/bubble_window_targeter_unittest.cc', 817 'bubble/bubble_window_targeter_unittest.cc',
812 'controls/button/custom_button_unittest.cc', 818 'controls/button/custom_button_unittest.cc',
813 'controls/button/menu_button_unittest.cc',
814 'controls/native/native_view_host_unittest.cc', 819 'controls/native/native_view_host_unittest.cc',
815 'controls/menu/menu_controller_unittest.cc', 820 'controls/menu/menu_controller_unittest.cc',
816 'ime/input_method_bridge_unittest.cc', 821 'ime/input_method_bridge_unittest.cc',
817 'focus/focus_manager_unittest.cc', 822 'focus/focus_manager_unittest.cc',
818 'widget/window_reorderer_unittest.cc', 823 'widget/window_reorderer_unittest.cc',
819 'widget/widget_unittest.cc',
820 ] 824 ]
821 }], 825 }],
822 ], 826 ],
823 }, # target_name: views_unittests 827 }, # target_name: views_unittests
824 ], 828 ],
825 } 829 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698