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

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

Issue 780273003: Fix releasing capture in Ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « ui/views/corewm/capture_controller_unittest.cc ('k') | ui/wm/BUILD.gn » ('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 # Sources lists shared with GN build. 7 # Sources lists shared with GN build.
8 'views_sources': [ 8 'views_sources': [
9 'accessibility/native_view_accessibility.cc', 9 'accessibility/native_view_accessibility.cc',
10 'accessibility/native_view_accessibility.h', 10 'accessibility/native_view_accessibility.h',
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 'widget/native_widget_mac_unittest.mm', 554 'widget/native_widget_mac_unittest.mm',
555 'widget/native_widget_unittest.cc', 555 'widget/native_widget_unittest.cc',
556 'widget/root_view_unittest.cc', 556 'widget/root_view_unittest.cc',
557 'widget/widget_unittest.cc', 557 'widget/widget_unittest.cc',
558 'widget/window_reorderer_unittest.cc', 558 'widget/window_reorderer_unittest.cc',
559 'window/custom_frame_view_unittest.cc', 559 'window/custom_frame_view_unittest.cc',
560 'window/dialog_client_view_unittest.cc', 560 'window/dialog_client_view_unittest.cc',
561 'window/dialog_delegate_unittest.cc', 561 'window/dialog_delegate_unittest.cc',
562 ], 562 ],
563 'views_unittests_aura_sources': [ 563 'views_unittests_aura_sources': [
564 'corewm/capture_controller_unittest.cc',
565 'corewm/tooltip_aura_unittest.cc', 564 'corewm/tooltip_aura_unittest.cc',
566 'corewm/tooltip_controller_unittest.cc', 565 'corewm/tooltip_controller_unittest.cc',
567 'touchui/touch_selection_controller_impl_unittest.cc', 566 'touchui/touch_selection_controller_impl_unittest.cc',
568 ], 567 ],
569 'views_unittests_desktop_aura_sources': [ 568 'views_unittests_desktop_aura_sources': [
570 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc', 569 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc',
571 'widget/desktop_aura/desktop_focus_rules_unittest.cc', 570 'widget/desktop_aura/desktop_focus_rules_unittest.cc',
572 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', 571 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc',
573 'widget/desktop_aura/desktop_screen_x11_unittest.cc', 572 'widget/desktop_aura/desktop_screen_x11_unittest.cc',
574 'widget/desktop_aura/desktop_screen_position_client_unittest.cc', 573 'widget/desktop_aura/desktop_screen_position_client_unittest.cc',
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 ], 819 ],
821 }], 820 }],
822 ['use_x11==1', { 821 ['use_x11==1', {
823 'dependencies': [ 822 'dependencies': [
824 '../../build/linux/system.gyp:x11', 823 '../../build/linux/system.gyp:x11',
825 '../../build/linux/system.gyp:xext', 824 '../../build/linux/system.gyp:xext',
826 '../events/devices/events_devices.gyp:events_devices', 825 '../events/devices/events_devices.gyp:events_devices',
827 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 826 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
828 ], 827 ],
829 }], 828 }],
830 ['use_ozone==1', {
831 'sources!': [
832 'corewm/capture_controller_unittest.cc',
833 ],
834 }],
835 ['use_aura==1', { 829 ['use_aura==1', {
836 'sources': [ '<@(views_unittests_aura_sources)' ], 830 'sources': [ '<@(views_unittests_aura_sources)' ],
837 'dependencies': [ 831 'dependencies': [
838 '../aura/aura.gyp:aura', 832 '../aura/aura.gyp:aura',
839 '../aura/aura.gyp:aura_test_support', 833 '../aura/aura.gyp:aura_test_support',
840 '../wm/wm.gyp:wm', 834 '../wm/wm.gyp:wm',
841 ], 835 ],
842 'conditions': [ 836 'conditions': [
843 ['chromeos == 0', { 837 ['chromeos == 0', {
844 'sources': [ '<@(views_unittests_desktop_aura_sources)' ], 838 'sources': [ '<@(views_unittests_desktop_aura_sources)' ],
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 '../aura/aura.gyp:aura', 889 '../aura/aura.gyp:aura',
896 '../wm/wm.gyp:wm', 890 '../wm/wm.gyp:wm',
897 ], 891 ],
898 }], 892 }],
899 ], 893 ],
900 }, # target_name: macviews_interactive_ui_tests 894 }, # target_name: macviews_interactive_ui_tests
901 ], # targets 895 ], # targets
902 }], 896 }],
903 ], # conditions 897 ], # conditions
904 } 898 }
OLDNEW
« no previous file with comments | « ui/views/corewm/capture_controller_unittest.cc ('k') | ui/wm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698