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

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

Issue 268673017: Fix 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
« no previous file with comments | « ui/base/x/x11_util.cc ('k') | ui/views/widget/desktop_aura/desktop_window_tree_host_x11.h » ('j') | 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) 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 'touchui/touch_selection_controller_impl_unittest.cc', 666 'touchui/touch_selection_controller_impl_unittest.cc',
667 'view_model_unittest.cc', 667 'view_model_unittest.cc',
668 'view_model_utils_unittest.cc', 668 'view_model_utils_unittest.cc',
669 'view_targeter_unittest.cc', 669 'view_targeter_unittest.cc',
670 'view_unittest.cc', 670 'view_unittest.cc',
671 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc', 671 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc',
672 'widget/desktop_aura/desktop_focus_rules_unittest.cc', 672 'widget/desktop_aura/desktop_focus_rules_unittest.cc',
673 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', 673 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc',
674 'widget/desktop_aura/desktop_screen_x11_unittest.cc', 674 'widget/desktop_aura/desktop_screen_x11_unittest.cc',
675 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', 675 'widget/desktop_aura/desktop_screen_position_client_unittest.cc',
676 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc',
676 'widget/native_widget_aura_unittest.cc', 677 'widget/native_widget_aura_unittest.cc',
677 'widget/native_widget_unittest.cc', 678 'widget/native_widget_unittest.cc',
678 'widget/root_view_unittest.cc', 679 'widget/root_view_unittest.cc',
679 'widget/widget_unittest.cc', 680 'widget/widget_unittest.cc',
680 'widget/window_reorderer_unittest.cc', 681 'widget/window_reorderer_unittest.cc',
681 'window/dialog_client_view_unittest.cc', 682 'window/dialog_client_view_unittest.cc',
682 'window/dialog_delegate_unittest.cc', 683 'window/dialog_delegate_unittest.cc',
683 ], 684 ],
684 'conditions': [ 685 'conditions': [
685 ['chromeos==0', { 686 ['chromeos==0', {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 'dependencies': [ 719 'dependencies': [
719 '../../base/allocator/allocator.gyp:allocator', 720 '../../base/allocator/allocator.gyp:allocator',
720 ], 721 ],
721 }], 722 }],
722 ['OS=="linux" and use_allocator!="none"', { 723 ['OS=="linux" and use_allocator!="none"', {
723 # See http://crbug.com/162998#c4 for why this is needed. 724 # See http://crbug.com/162998#c4 for why this is needed.
724 'dependencies': [ 725 'dependencies': [
725 '../../base/allocator/allocator.gyp:allocator', 726 '../../base/allocator/allocator.gyp:allocator',
726 ], 727 ],
727 }], 728 }],
729 ['use_x11==1', {
730 'dependencies': [
731 '../../build/linux/system.gyp:x11',
732 '../../build/linux/system.gyp:xext',
733 ],
734 }],
728 ['use_ozone==1', { 735 ['use_ozone==1', {
729 'sources!': [ 736 'sources!': [
730 'corewm/capture_controller_unittest.cc', 737 'corewm/capture_controller_unittest.cc',
731 ], 738 ],
732 }], 739 }],
733 ['use_aura==1', { 740 ['use_aura==1', {
734 'dependencies': [ 741 'dependencies': [
735 '../aura/aura.gyp:aura_test_support', 742 '../aura/aura.gyp:aura_test_support',
736 ], 743 ],
737 }], 744 }],
738 ['use_x11==1', { 745 ['use_x11==1', {
739 'dependencies': [ 746 'dependencies': [
740 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 747 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
741 ], 748 ],
742 }], 749 }],
743 ], 750 ],
744 }, # target_name: views_unittests 751 }, # target_name: views_unittests
745 ], 752 ],
746 } 753 }
OLDNEW
« no previous file with comments | « ui/base/x/x11_util.cc ('k') | ui/views/widget/desktop_aura/desktop_window_tree_host_x11.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698