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

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

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test failures on Mac Created 5 years, 8 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
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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 'corewm/tooltip_win.h', 378 'corewm/tooltip_win.h',
379 'drag_utils_aura.cc', 379 'drag_utils_aura.cc',
380 'event_monitor_aura.cc', 380 'event_monitor_aura.cc',
381 'event_monitor_aura.h', 381 'event_monitor_aura.h',
382 'metrics_aura.cc', 382 'metrics_aura.cc',
383 'native_cursor_aura.cc', 383 'native_cursor_aura.cc',
384 'touchui/touch_editing_menu.cc', 384 'touchui/touch_editing_menu.cc',
385 'touchui/touch_editing_menu.h', 385 'touchui/touch_editing_menu.h',
386 'touchui/touch_selection_controller_impl.cc', 386 'touchui/touch_selection_controller_impl.cc',
387 'touchui/touch_selection_controller_impl.h', 387 'touchui/touch_selection_controller_impl.h',
388 'touchui/touch_selection_menu_runner_views.cc',
389 'touchui/touch_selection_menu_runner_views.h',
388 'view_constants_aura.cc', 390 'view_constants_aura.cc',
389 'view_constants_aura.h', 391 'view_constants_aura.h',
390 'views_touch_selection_controller_factory_aura.cc', 392 'views_touch_selection_controller_factory_aura.cc',
391 'widget/native_widget_aura.cc', 393 'widget/native_widget_aura.cc',
392 'widget/native_widget_aura.h', 394 'widget/native_widget_aura.h',
393 'widget/tooltip_manager_aura.cc', 395 'widget/tooltip_manager_aura.cc',
394 'widget/tooltip_manager_aura.h', 396 'widget/tooltip_manager_aura.h',
395 'widget/window_reorderer.cc', 397 'widget/window_reorderer.cc',
396 'widget/window_reorderer.h', 398 'widget/window_reorderer.h',
397 ], 399 ],
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 'window/dialog_delegate_unittest.cc', 569 'window/dialog_delegate_unittest.cc',
568 ], 570 ],
569 'views_unittests_desktop_sources': [ 571 'views_unittests_desktop_sources': [
570 'ime/input_method_bridge_unittest.cc', 572 'ime/input_method_bridge_unittest.cc',
571 'widget/desktop_widget_unittest.cc', 573 'widget/desktop_widget_unittest.cc',
572 ], 574 ],
573 'views_unittests_aura_sources': [ 575 'views_unittests_aura_sources': [
574 'controls/native/native_view_host_aura_unittest.cc', 576 'controls/native/native_view_host_aura_unittest.cc',
575 'corewm/tooltip_controller_unittest.cc', 577 'corewm/tooltip_controller_unittest.cc',
576 'touchui/touch_selection_controller_impl_unittest.cc', 578 'touchui/touch_selection_controller_impl_unittest.cc',
579 'touchui/touch_selection_menu_runner_views_unittest.cc',
577 'view_unittest_aura.cc', 580 'view_unittest_aura.cc',
578 'widget/native_widget_aura_unittest.cc', 581 'widget/native_widget_aura_unittest.cc',
579 ], 582 ],
580 'views_unittests_desktop_aura_sources': [ 583 'views_unittests_desktop_aura_sources': [
581 'widget/desktop_aura/desktop_focus_rules_unittest.cc', 584 'widget/desktop_aura/desktop_focus_rules_unittest.cc',
582 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc', 585 'widget/desktop_aura/desktop_native_widget_aura_unittest.cc',
583 ], 586 ],
584 'views_unittests_desktop_aurax11_sources': [ 587 'views_unittests_desktop_aurax11_sources': [
585 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc', 588 'widget/desktop_aura/desktop_drag_drop_client_aurax11_unittest.cc',
586 'widget/desktop_aura/desktop_screen_x11_unittest.cc', 589 'widget/desktop_aura/desktop_screen_x11_unittest.cc',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 695 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
693 '../gfx/x/gfx_x11.gyp:gfx_x11', 696 '../gfx/x/gfx_x11.gyp:gfx_x11',
694 ], 697 ],
695 }], 698 }],
696 ['use_aura==1', { 699 ['use_aura==1', {
697 'sources': [ 700 'sources': [
698 '<@(views_aura_sources)', 701 '<@(views_aura_sources)',
699 ], 702 ],
700 'dependencies': [ 703 'dependencies': [
701 '../aura/aura.gyp:aura', 704 '../aura/aura.gyp:aura',
705 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
702 '../wm/wm.gyp:wm', 706 '../wm/wm.gyp:wm',
703 ], 707 ],
704 }], 708 }],
705 ['use_aura and chromeos == 0', { 709 ['use_aura and chromeos == 0', {
706 'sources': [ '<@(views_desktop_aura_sources)' ], 710 'sources': [ '<@(views_desktop_aura_sources)' ],
707 'conditions': [ 711 'conditions': [
708 ['OS == "linux"', { 712 ['OS == "linux"', {
709 'sources': [ '<@(views_desktop_aura_linux_sources)' ], 713 'sources': [ '<@(views_desktop_aura_linux_sources)' ],
710 }], 714 }],
711 ['use_x11 == 1', { 715 ['use_x11 == 1', {
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 '../../build/linux/system.gyp:xext', 854 '../../build/linux/system.gyp:xext',
851 '../events/devices/events_devices.gyp:events_devices', 855 '../events/devices/events_devices.gyp:events_devices',
852 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 856 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
853 ], 857 ],
854 }], 858 }],
855 ['use_aura==1', { 859 ['use_aura==1', {
856 'sources': [ '<@(views_unittests_aura_sources)' ], 860 'sources': [ '<@(views_unittests_aura_sources)' ],
857 'dependencies': [ 861 'dependencies': [
858 '../aura/aura.gyp:aura', 862 '../aura/aura.gyp:aura',
859 '../aura/aura.gyp:aura_test_support', 863 '../aura/aura.gyp:aura_test_support',
864 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
860 '../wm/wm.gyp:wm', 865 '../wm/wm.gyp:wm',
861 ], 866 ],
862 'conditions': [ 867 'conditions': [
863 ['chromeos == 0', { 868 ['chromeos == 0', {
864 'sources': [ '<@(views_unittests_desktop_aura_sources)' ], 869 'sources': [ '<@(views_unittests_desktop_aura_sources)' ],
865 }], 870 }],
866 ['chromeos == 0 and use_x11==1', { 871 ['chromeos == 0 and use_x11==1', {
867 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ], 872 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ],
868 }], 873 }],
869 ] 874 ]
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 '../aura/aura.gyp:aura', 926 '../aura/aura.gyp:aura',
922 '../wm/wm.gyp:wm', 927 '../wm/wm.gyp:wm',
923 ], 928 ],
924 }], 929 }],
925 ], 930 ],
926 }, # target_name: macviews_interactive_ui_tests 931 }, # target_name: macviews_interactive_ui_tests
927 ], # targets 932 ], # targets
928 }], 933 }],
929 ], # conditions 934 ], # conditions
930 } 935 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698