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

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

Issue 264713007: Add unittests for X11TopmostWindowFinder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/ui_controls_factory_desktop_aurax11.cc', 618 'test/ui_controls_factory_desktop_aurax11.cc',
619 'test/ui_controls_factory_desktop_aurax11.h', 619 'test/ui_controls_factory_desktop_aurax11.h',
620 'test/views_test_base.cc', 620 'test/views_test_base.cc',
621 'test/views_test_base.h', 621 'test/views_test_base.h',
622 'test/views_test_helper.cc', 622 'test/views_test_helper.cc',
623 'test/views_test_helper.h', 623 'test/views_test_helper.h',
624 'test/views_test_helper_aura.cc', 624 'test/views_test_helper_aura.cc',
625 'test/views_test_helper_aura.h', 625 'test/views_test_helper_aura.h',
626 'test/widget_test.cc', 626 'test/widget_test.cc',
627 'test/widget_test.h', 627 'test/widget_test.h',
628 'test/x11_property_change_waiter.cc',
629 'test/x11_property_change_waiter.h',
628 ], 630 ],
629 'conditions': [ 631 'conditions': [
630 ['chromeos==1', { 632 ['chromeos==1', {
631 'sources!': [ 633 'sources!': [
632 'test/ui_controls_factory_desktop_aurax11.cc', 634 'test/ui_controls_factory_desktop_aurax11.cc',
633 'test/ui_controls_factory_desktop_aurax11.h', 635 'test/ui_controls_factory_desktop_aurax11.h',
634 ], 636 ],
635 }], 637 }],
636 ['use_aura==1', { 638 ['use_aura==1', {
637 'dependencies': [ 639 'dependencies': [
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 'view_model_utils_unittest.cc', 724 'view_model_utils_unittest.cc',
723 'view_targeter_unittest.cc', 725 'view_targeter_unittest.cc',
724 'view_unittest.cc', 726 'view_unittest.cc',
725 'view_unittest_aura.cc', 727 'view_unittest_aura.cc',
726 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc', 728 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc',
727 'widget/desktop_aura/desktop_focus_rules_unittest.cc', 729 'widget/desktop_aura/desktop_focus_rules_unittest.cc',
728 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', 730 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc',
729 'widget/desktop_aura/desktop_screen_x11_unittest.cc', 731 'widget/desktop_aura/desktop_screen_x11_unittest.cc',
730 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', 732 'widget/desktop_aura/desktop_screen_position_client_unittest.cc',
731 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc', 733 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc',
734 'widget/desktop_aura/x11_topmost_window_finder_unittest.cc',
732 'widget/native_widget_aura_unittest.cc', 735 'widget/native_widget_aura_unittest.cc',
733 'widget/native_widget_unittest.cc', 736 'widget/native_widget_unittest.cc',
734 'widget/root_view_unittest.cc', 737 'widget/root_view_unittest.cc',
735 'widget/widget_unittest.cc', 738 'widget/widget_unittest.cc',
736 'widget/window_reorderer_unittest.cc', 739 'widget/window_reorderer_unittest.cc',
737 'window/custom_frame_view_unittest.cc', 740 'window/custom_frame_view_unittest.cc',
738 'window/dialog_client_view_unittest.cc', 741 'window/dialog_client_view_unittest.cc',
739 'window/dialog_delegate_unittest.cc', 742 'window/dialog_delegate_unittest.cc',
740 ], 743 ],
741 'conditions': [ 744 'conditions': [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 ['OS=="linux" and use_allocator!="none"', { 778 ['OS=="linux" and use_allocator!="none"', {
776 # See http://crbug.com/162998#c4 for why this is needed. 779 # See http://crbug.com/162998#c4 for why this is needed.
777 'dependencies': [ 780 'dependencies': [
778 '../../base/allocator/allocator.gyp:allocator', 781 '../../base/allocator/allocator.gyp:allocator',
779 ], 782 ],
780 }], 783 }],
781 ['use_x11==1', { 784 ['use_x11==1', {
782 'dependencies': [ 785 'dependencies': [
783 '../../build/linux/system.gyp:x11', 786 '../../build/linux/system.gyp:x11',
784 '../../build/linux/system.gyp:xext', 787 '../../build/linux/system.gyp:xext',
788 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
785 ], 789 ],
786 }], 790 }],
787 ['use_ozone==1', { 791 ['use_ozone==1', {
788 'sources!': [ 792 'sources!': [
789 'corewm/capture_controller_unittest.cc', 793 'corewm/capture_controller_unittest.cc',
790 ], 794 ],
791 }], 795 }],
792 ['use_aura==1', { 796 ['use_aura==1', {
793 'dependencies': [ 797 'dependencies': [
794 '../aura/aura.gyp:aura_test_support', 798 '../aura/aura.gyp:aura_test_support',
(...skipping 15 matching lines...) Expand all
810 'ime/input_method_bridge_unittest.cc', 814 'ime/input_method_bridge_unittest.cc',
811 'focus/focus_manager_unittest.cc', 815 'focus/focus_manager_unittest.cc',
812 'widget/window_reorderer_unittest.cc', 816 'widget/window_reorderer_unittest.cc',
813 'widget/widget_unittest.cc', 817 'widget/widget_unittest.cc',
814 ] 818 ]
815 }], 819 }],
816 ], 820 ],
817 }, # target_name: views_unittests 821 }, # target_name: views_unittests
818 ], 822 ],
819 } 823 }
OLDNEW
« no previous file with comments | « ui/views/test/x11_property_change_waiter.cc ('k') | ui/views/widget/desktop_aura/desktop_screen_x11_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698