OLD | NEW |
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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 'touchui/touch_selection_controller_impl_unittest.cc', | 672 'touchui/touch_selection_controller_impl_unittest.cc', |
673 'view_model_unittest.cc', | 673 'view_model_unittest.cc', |
674 'view_model_utils_unittest.cc', | 674 'view_model_utils_unittest.cc', |
675 'view_targeter_unittest.cc', | 675 'view_targeter_unittest.cc', |
676 'view_unittest.cc', | 676 'view_unittest.cc', |
677 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc', | 677 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc', |
678 'widget/desktop_aura/desktop_focus_rules_unittest.cc', | 678 'widget/desktop_aura/desktop_focus_rules_unittest.cc', |
679 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', | 679 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', |
680 'widget/desktop_aura/desktop_screen_x11_unittest.cc', | 680 'widget/desktop_aura/desktop_screen_x11_unittest.cc', |
681 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', | 681 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', |
| 682 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc', |
682 'widget/native_widget_aura_unittest.cc', | 683 'widget/native_widget_aura_unittest.cc', |
683 'widget/native_widget_unittest.cc', | 684 'widget/native_widget_unittest.cc', |
684 'widget/root_view_unittest.cc', | 685 'widget/root_view_unittest.cc', |
685 'widget/widget_unittest.cc', | 686 'widget/widget_unittest.cc', |
686 'widget/window_reorderer_unittest.cc', | 687 'widget/window_reorderer_unittest.cc', |
687 'window/dialog_client_view_unittest.cc', | 688 'window/dialog_client_view_unittest.cc', |
688 'window/dialog_delegate_unittest.cc', | 689 'window/dialog_delegate_unittest.cc', |
689 ], | 690 ], |
690 'conditions': [ | 691 'conditions': [ |
691 ['chromeos==0', { | 692 ['chromeos==0', { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 'dependencies': [ | 725 'dependencies': [ |
725 '../../base/allocator/allocator.gyp:allocator', | 726 '../../base/allocator/allocator.gyp:allocator', |
726 ], | 727 ], |
727 }], | 728 }], |
728 ['OS=="linux" and use_allocator!="none"', { | 729 ['OS=="linux" and use_allocator!="none"', { |
729 # See http://crbug.com/162998#c4 for why this is needed. | 730 # See http://crbug.com/162998#c4 for why this is needed. |
730 'dependencies': [ | 731 'dependencies': [ |
731 '../../base/allocator/allocator.gyp:allocator', | 732 '../../base/allocator/allocator.gyp:allocator', |
732 ], | 733 ], |
733 }], | 734 }], |
| 735 ['use_x11==1', { |
| 736 'dependencies': [ |
| 737 '../../build/linux/system.gyp:x11', |
| 738 '../../build/linux/system.gyp:xext', |
| 739 ], |
| 740 }], |
734 ['use_ozone==1', { | 741 ['use_ozone==1', { |
735 'sources!': [ | 742 'sources!': [ |
736 'corewm/capture_controller_unittest.cc', | 743 'corewm/capture_controller_unittest.cc', |
737 ], | 744 ], |
738 }], | 745 }], |
739 ['use_aura==1', { | 746 ['use_aura==1', { |
740 'dependencies': [ | 747 'dependencies': [ |
741 '../aura/aura.gyp:aura_test_support', | 748 '../aura/aura.gyp:aura_test_support', |
742 ], | 749 ], |
743 }], | 750 }], |
744 ['use_x11==1', { | 751 ['use_x11==1', { |
745 'dependencies': [ | 752 'dependencies': [ |
746 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform'
, | 753 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform'
, |
747 ], | 754 ], |
748 }], | 755 }], |
749 ], | 756 ], |
750 }, # target_name: views_unittests | 757 }, # target_name: views_unittests |
751 ], | 758 ], |
752 } | 759 } |
OLD | NEW |