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

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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 'run_all_unittests.cc', 641 'run_all_unittests.cc',
642 'touchui/touch_selection_controller_impl_unittest.cc', 642 'touchui/touch_selection_controller_impl_unittest.cc',
643 'view_model_unittest.cc', 643 'view_model_unittest.cc',
644 'view_model_utils_unittest.cc', 644 'view_model_utils_unittest.cc',
645 'view_unittest.cc', 645 'view_unittest.cc',
646 'widget/desktop_aura/desktop_focus_rules_unittest.cc', 646 'widget/desktop_aura/desktop_focus_rules_unittest.cc',
647 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', 647 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc',
648 'widget/desktop_aura/desktop_window_tree_host_win_unittest.cc', 648 'widget/desktop_aura/desktop_window_tree_host_win_unittest.cc',
649 'widget/desktop_aura/desktop_screen_x11_unittest.cc', 649 'widget/desktop_aura/desktop_screen_x11_unittest.cc',
650 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', 650 'widget/desktop_aura/desktop_screen_position_client_unittest.cc',
651 'widget/desktop_aura/x11_topmost_window_finder_unittest.cc',
651 'widget/native_widget_aura_unittest.cc', 652 'widget/native_widget_aura_unittest.cc',
652 'widget/native_widget_unittest.cc', 653 'widget/native_widget_unittest.cc',
653 'widget/root_view_unittest.cc', 654 'widget/root_view_unittest.cc',
654 'widget/widget_unittest.cc', 655 'widget/widget_unittest.cc',
655 'widget/window_reorderer_unittest.cc', 656 'widget/window_reorderer_unittest.cc',
656 'window/dialog_client_view_unittest.cc', 657 'window/dialog_client_view_unittest.cc',
657 'window/dialog_delegate_unittest.cc', 658 'window/dialog_delegate_unittest.cc',
658 ], 659 ],
659 'conditions': [ 660 'conditions': [
660 ['chromeos==0', { 661 ['chromeos==0', {
(...skipping 30 matching lines...) Expand all
691 '../../base/allocator/allocator.gyp:allocator', 692 '../../base/allocator/allocator.gyp:allocator',
692 ], 693 ],
693 }], 694 }],
694 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 695 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
695 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { 696 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', {
696 # See http://crbug.com/162998#c4 for why this is needed. 697 # See http://crbug.com/162998#c4 for why this is needed.
697 'dependencies': [ 698 'dependencies': [
698 '../../base/allocator/allocator.gyp:allocator', 699 '../../base/allocator/allocator.gyp:allocator',
699 ], 700 ],
700 }], 701 }],
702 ['use_x11==1', {
703 'dependencies': [
704 '../../build/linux/system.gyp:x11',
705 '../../build/linux/system.gyp:xext',
706 ],
707 }],
701 ['use_ozone==1', { 708 ['use_ozone==1', {
702 'sources!': [ 709 'sources!': [
703 'corewm/capture_controller_unittest.cc', 710 'corewm/capture_controller_unittest.cc',
704 ], 711 ],
705 }], 712 }],
706 ['use_aura==1', { 713 ['use_aura==1', {
707 'dependencies': [ 714 'dependencies': [
708 '../aura/aura.gyp:aura_test_support', 715 '../aura/aura.gyp:aura_test_support',
709 ], 716 ],
710 }], 717 }],
711 ], 718 ],
712 }, # target_name: views_unittests 719 }, # target_name: views_unittests
713 ], 720 ],
714 } 721 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698