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

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, 7 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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 'test/ui_controls_factory_desktop_aurax11.cc', 572 'test/ui_controls_factory_desktop_aurax11.cc',
573 'test/ui_controls_factory_desktop_aurax11.h', 573 'test/ui_controls_factory_desktop_aurax11.h',
574 'test/views_test_base.cc', 574 'test/views_test_base.cc',
575 'test/views_test_base.h', 575 'test/views_test_base.h',
576 'test/views_test_helper.cc', 576 'test/views_test_helper.cc',
577 'test/views_test_helper.h', 577 'test/views_test_helper.h',
578 'test/views_test_helper_aura.cc', 578 'test/views_test_helper_aura.cc',
579 'test/views_test_helper_aura.h', 579 'test/views_test_helper_aura.h',
580 'test/widget_test.cc', 580 'test/widget_test.cc',
581 'test/widget_test.h', 581 'test/widget_test.h',
582 'test/x11_property_change_waiter.cc',
583 'test/x11_property_change_waiter.h',
582 ], 584 ],
583 'conditions': [ 585 'conditions': [
584 ['chromeos==1', { 586 ['chromeos==1', {
585 'sources!': [ 587 'sources!': [
586 'test/ui_controls_factory_desktop_aurax11.cc', 588 'test/ui_controls_factory_desktop_aurax11.cc',
587 'test/ui_controls_factory_desktop_aurax11.h', 589 'test/ui_controls_factory_desktop_aurax11.h',
588 ], 590 ],
589 }], 591 }],
590 ['use_aura==1', { 592 ['use_aura==1', {
591 'dependencies': [ 593 'dependencies': [
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 'view_model_unittest.cc', 675 'view_model_unittest.cc',
674 'view_model_utils_unittest.cc', 676 'view_model_utils_unittest.cc',
675 'view_targeter_unittest.cc', 677 'view_targeter_unittest.cc',
676 'view_unittest.cc', 678 'view_unittest.cc',
677 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc', 679 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc',
678 'widget/desktop_aura/desktop_focus_rules_unittest.cc', 680 'widget/desktop_aura/desktop_focus_rules_unittest.cc',
679 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', 681 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc',
680 'widget/desktop_aura/desktop_screen_x11_unittest.cc', 682 'widget/desktop_aura/desktop_screen_x11_unittest.cc',
681 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', 683 'widget/desktop_aura/desktop_screen_position_client_unittest.cc',
682 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc', 684 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc',
685 'widget/desktop_aura/x11_topmost_window_finder_unittest.cc',
683 'widget/native_widget_aura_unittest.cc', 686 'widget/native_widget_aura_unittest.cc',
684 'widget/native_widget_unittest.cc', 687 'widget/native_widget_unittest.cc',
685 'widget/root_view_unittest.cc', 688 'widget/root_view_unittest.cc',
686 'widget/widget_unittest.cc', 689 'widget/widget_unittest.cc',
687 'widget/window_reorderer_unittest.cc', 690 'widget/window_reorderer_unittest.cc',
688 'window/dialog_client_view_unittest.cc', 691 'window/dialog_client_view_unittest.cc',
689 'window/dialog_delegate_unittest.cc', 692 'window/dialog_delegate_unittest.cc',
690 ], 693 ],
691 'conditions': [ 694 'conditions': [
692 ['chromeos==0', { 695 ['chromeos==0', {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 }], 731 }],
729 ['OS=="linux" and use_allocator!="none"', { 732 ['OS=="linux" and use_allocator!="none"', {
730 # See http://crbug.com/162998#c4 for why this is needed. 733 # See http://crbug.com/162998#c4 for why this is needed.
731 'dependencies': [ 734 'dependencies': [
732 '../../base/allocator/allocator.gyp:allocator', 735 '../../base/allocator/allocator.gyp:allocator',
733 ], 736 ],
734 }], 737 }],
735 ['use_x11==1', { 738 ['use_x11==1', {
736 'dependencies': [ 739 'dependencies': [
737 '../../build/linux/system.gyp:x11', 740 '../../build/linux/system.gyp:x11',
738 '../../build/linux/system.gyp:xext', 741 '../../build/linux/system.gyp:xext',
742 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
739 ], 743 ],
740 }], 744 }],
741 ['use_ozone==1', { 745 ['use_ozone==1', {
742 'sources!': [ 746 'sources!': [
743 'corewm/capture_controller_unittest.cc', 747 'corewm/capture_controller_unittest.cc',
744 ], 748 ],
745 }], 749 }],
746 ['use_aura==1', { 750 ['use_aura==1', {
747 'dependencies': [ 751 'dependencies': [
748 '../aura/aura.gyp:aura_test_support', 752 '../aura/aura.gyp:aura_test_support',
749 ], 753 ],
750 }], 754 }],
751 ['use_x11==1', {
752 'dependencies': [
753 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
754 ],
755 }],
756 ], 755 ],
757 }, # target_name: views_unittests 756 }, # target_name: views_unittests
758 ], 757 ],
759 } 758 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698