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

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
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 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 'rect_based_targeting_utils_unittest.cc', 650 'rect_based_targeting_utils_unittest.cc',
651 'run_all_unittests.cc', 651 'run_all_unittests.cc',
652 'touchui/touch_selection_controller_impl_unittest.cc', 652 'touchui/touch_selection_controller_impl_unittest.cc',
653 'view_model_unittest.cc', 653 'view_model_unittest.cc',
654 'view_model_utils_unittest.cc', 654 'view_model_utils_unittest.cc',
655 'view_unittest.cc', 655 'view_unittest.cc',
656 'widget/desktop_aura/desktop_focus_rules_unittest.cc', 656 'widget/desktop_aura/desktop_focus_rules_unittest.cc',
657 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', 657 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc',
658 'widget/desktop_aura/desktop_screen_x11_unittest.cc', 658 'widget/desktop_aura/desktop_screen_x11_unittest.cc',
659 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', 659 'widget/desktop_aura/desktop_screen_position_client_unittest.cc',
660 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc',
660 'widget/native_widget_aura_unittest.cc', 661 'widget/native_widget_aura_unittest.cc',
661 'widget/native_widget_unittest.cc', 662 'widget/native_widget_unittest.cc',
662 'widget/root_view_unittest.cc', 663 'widget/root_view_unittest.cc',
663 'widget/widget_unittest.cc', 664 'widget/widget_unittest.cc',
664 'widget/window_reorderer_unittest.cc', 665 'widget/window_reorderer_unittest.cc',
665 'window/dialog_client_view_unittest.cc', 666 'window/dialog_client_view_unittest.cc',
666 'window/dialog_delegate_unittest.cc', 667 'window/dialog_delegate_unittest.cc',
667 ], 668 ],
668 'conditions': [ 669 'conditions': [
669 ['chromeos==0', { 670 ['chromeos==0', {
(...skipping 29 matching lines...) Expand all
699 'dependencies': [ 700 'dependencies': [
700 '../../base/allocator/allocator.gyp:allocator', 701 '../../base/allocator/allocator.gyp:allocator',
701 ], 702 ],
702 }], 703 }],
703 ['OS=="linux" and use_allocator!="none"', { 704 ['OS=="linux" and use_allocator!="none"', {
704 # See http://crbug.com/162998#c4 for why this is needed. 705 # See http://crbug.com/162998#c4 for why this is needed.
705 'dependencies': [ 706 'dependencies': [
706 '../../base/allocator/allocator.gyp:allocator', 707 '../../base/allocator/allocator.gyp:allocator',
707 ], 708 ],
708 }], 709 }],
710 ['use_x11==1', {
711 'dependencies': [
712 '../../build/linux/system.gyp:x11',
713 '../../build/linux/system.gyp:xext',
714 ],
715 }],
709 ['use_ozone==1', { 716 ['use_ozone==1', {
710 'sources!': [ 717 'sources!': [
711 'corewm/capture_controller_unittest.cc', 718 'corewm/capture_controller_unittest.cc',
712 ], 719 ],
713 }], 720 }],
714 ['use_aura==1', { 721 ['use_aura==1', {
715 'dependencies': [ 722 'dependencies': [
716 '../aura/aura.gyp:aura_test_support', 723 '../aura/aura.gyp:aura_test_support',
717 ], 724 ],
718 }], 725 }],
719 ], 726 ],
720 }, # target_name: views_unittests 727 }, # target_name: views_unittests
721 ], 728 ],
722 } 729 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698