| 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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 'run_all_unittests.cc', | 656 'run_all_unittests.cc', |
| 657 'touchui/touch_selection_controller_impl_unittest.cc', | 657 'touchui/touch_selection_controller_impl_unittest.cc', |
| 658 'view_model_unittest.cc', | 658 'view_model_unittest.cc', |
| 659 'view_model_utils_unittest.cc', | 659 'view_model_utils_unittest.cc', |
| 660 'view_targeter_unittest.cc', | 660 'view_targeter_unittest.cc', |
| 661 'view_unittest.cc', | 661 'view_unittest.cc', |
| 662 'widget/desktop_aura/desktop_focus_rules_unittest.cc', | 662 'widget/desktop_aura/desktop_focus_rules_unittest.cc', |
| 663 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', | 663 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', |
| 664 'widget/desktop_aura/desktop_screen_x11_unittest.cc', | 664 'widget/desktop_aura/desktop_screen_x11_unittest.cc', |
| 665 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', | 665 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', |
| 666 'widget/desktop_aura/desktop_window_tree_host_x11_unittest.cc', |
| 666 'widget/native_widget_aura_unittest.cc', | 667 'widget/native_widget_aura_unittest.cc', |
| 667 'widget/native_widget_unittest.cc', | 668 'widget/native_widget_unittest.cc', |
| 668 'widget/root_view_unittest.cc', | 669 'widget/root_view_unittest.cc', |
| 669 'widget/widget_unittest.cc', | 670 'widget/widget_unittest.cc', |
| 670 'widget/window_reorderer_unittest.cc', | 671 'widget/window_reorderer_unittest.cc', |
| 671 'window/dialog_client_view_unittest.cc', | 672 'window/dialog_client_view_unittest.cc', |
| 672 'window/dialog_delegate_unittest.cc', | 673 'window/dialog_delegate_unittest.cc', |
| 673 ], | 674 ], |
| 674 'conditions': [ | 675 'conditions': [ |
| 675 ['chromeos==0', { | 676 ['chromeos==0', { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 'dependencies': [ | 709 'dependencies': [ |
| 709 '../../base/allocator/allocator.gyp:allocator', | 710 '../../base/allocator/allocator.gyp:allocator', |
| 710 ], | 711 ], |
| 711 }], | 712 }], |
| 712 ['OS=="linux" and use_allocator!="none"', { | 713 ['OS=="linux" and use_allocator!="none"', { |
| 713 # See http://crbug.com/162998#c4 for why this is needed. | 714 # See http://crbug.com/162998#c4 for why this is needed. |
| 714 'dependencies': [ | 715 'dependencies': [ |
| 715 '../../base/allocator/allocator.gyp:allocator', | 716 '../../base/allocator/allocator.gyp:allocator', |
| 716 ], | 717 ], |
| 717 }], | 718 }], |
| 719 ['use_x11==1', { |
| 720 'dependencies': [ |
| 721 '../../build/linux/system.gyp:x11', |
| 722 '../../build/linux/system.gyp:xext', |
| 723 ], |
| 724 }], |
| 718 ['use_ozone==1', { | 725 ['use_ozone==1', { |
| 719 'sources!': [ | 726 'sources!': [ |
| 720 'corewm/capture_controller_unittest.cc', | 727 'corewm/capture_controller_unittest.cc', |
| 721 ], | 728 ], |
| 722 }], | 729 }], |
| 723 ['use_aura==1', { | 730 ['use_aura==1', { |
| 724 'dependencies': [ | 731 'dependencies': [ |
| 725 '../aura/aura.gyp:aura_test_support', | 732 '../aura/aura.gyp:aura_test_support', |
| 726 ], | 733 ], |
| 727 }], | 734 }], |
| 728 ], | 735 ], |
| 729 }, # target_name: views_unittests | 736 }, # target_name: views_unittests |
| 730 ], | 737 ], |
| 731 } | 738 } |
| OLD | NEW |