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

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: Rebased after addition of touch_handle_orientation file Created 5 years, 9 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 'corewm/tooltip_aura.cc', 387 'corewm/tooltip_aura.cc',
388 'corewm/tooltip_aura.h', 388 'corewm/tooltip_aura.h',
389 'corewm/tooltip_controller.cc', 389 'corewm/tooltip_controller.cc',
390 'corewm/tooltip_controller.h', 390 'corewm/tooltip_controller.h',
391 'corewm/tooltip_win.cc', 391 'corewm/tooltip_win.cc',
392 'corewm/tooltip_win.h', 392 'corewm/tooltip_win.h',
393 'touchui/touch_editing_menu.cc', 393 'touchui/touch_editing_menu.cc',
394 'touchui/touch_editing_menu.h', 394 'touchui/touch_editing_menu.h',
395 'touchui/touch_selection_controller_impl.cc', 395 'touchui/touch_selection_controller_impl.cc',
396 'touchui/touch_selection_controller_impl.h', 396 'touchui/touch_selection_controller_impl.h',
397 'touchui/touch_selection_menu_runner_views.cc',
398 'touchui/touch_selection_menu_runner_views.h',
397 'widget/window_reorderer.cc', 399 'widget/window_reorderer.cc',
398 'widget/window_reorderer.h', 400 'widget/window_reorderer.h',
399 ], 401 ],
400 'views_desktop_aura_sources': [ 402 'views_desktop_aura_sources': [
401 'widget/desktop_aura/desktop_capture_client.cc', 403 'widget/desktop_aura/desktop_capture_client.cc',
402 'widget/desktop_aura/desktop_capture_client.h', 404 'widget/desktop_aura/desktop_capture_client.h',
403 'widget/desktop_aura/desktop_cursor_loader_updater.h', 405 'widget/desktop_aura/desktop_cursor_loader_updater.h',
404 'widget/desktop_aura/desktop_dispatcher_client.cc', 406 'widget/desktop_aura/desktop_dispatcher_client.cc',
405 'widget/desktop_aura/desktop_dispatcher_client.h', 407 'widget/desktop_aura/desktop_dispatcher_client.h',
406 'widget/desktop_aura/desktop_drop_target_win.cc', 408 'widget/desktop_aura/desktop_drop_target_win.cc',
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 687 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
686 '../gfx/x/gfx_x11.gyp:gfx_x11', 688 '../gfx/x/gfx_x11.gyp:gfx_x11',
687 ], 689 ],
688 }], 690 }],
689 ['use_aura==1', { 691 ['use_aura==1', {
690 'sources': [ 692 'sources': [
691 '<@(views_aura_sources)', 693 '<@(views_aura_sources)',
692 ], 694 ],
693 'dependencies': [ 695 'dependencies': [
694 '../aura/aura.gyp:aura', 696 '../aura/aura.gyp:aura',
697 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
695 '../wm/wm.gyp:wm', 698 '../wm/wm.gyp:wm',
696 ], 699 ],
697 }], 700 }],
698 ['use_aura and chromeos == 0', { 701 ['use_aura and chromeos == 0', {
699 'sources': [ '<@(views_desktop_aura_sources)' ], 702 'sources': [ '<@(views_desktop_aura_sources)' ],
700 'conditions': [ 703 'conditions': [
701 ['OS == "linux"', { 704 ['OS == "linux"', {
702 'sources': [ '<@(views_desktop_aura_linux_sources)' ], 705 'sources': [ '<@(views_desktop_aura_linux_sources)' ],
703 }], 706 }],
704 ['use_x11 == 1', { 707 ['use_x11 == 1', {
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 '../../build/linux/system.gyp:xext', 843 '../../build/linux/system.gyp:xext',
841 '../events/devices/events_devices.gyp:events_devices', 844 '../events/devices/events_devices.gyp:events_devices',
842 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 845 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
843 ], 846 ],
844 }], 847 }],
845 ['use_aura==1', { 848 ['use_aura==1', {
846 'sources': [ '<@(views_unittests_aura_sources)' ], 849 'sources': [ '<@(views_unittests_aura_sources)' ],
847 'dependencies': [ 850 'dependencies': [
848 '../aura/aura.gyp:aura', 851 '../aura/aura.gyp:aura',
849 '../aura/aura.gyp:aura_test_support', 852 '../aura/aura.gyp:aura_test_support',
853 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
850 '../wm/wm.gyp:wm', 854 '../wm/wm.gyp:wm',
851 ], 855 ],
852 'conditions': [ 856 'conditions': [
853 ['chromeos == 0', { 857 ['chromeos == 0', {
854 'sources': [ '<@(views_unittests_desktop_aura_sources)' ], 858 'sources': [ '<@(views_unittests_desktop_aura_sources)' ],
855 }], 859 }],
856 ['chromeos == 0 and use_x11==1', { 860 ['chromeos == 0 and use_x11==1', {
857 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ], 861 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ],
858 }], 862 }],
859 ] 863 ]
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 '../aura/aura.gyp:aura', 915 '../aura/aura.gyp:aura',
912 '../wm/wm.gyp:wm', 916 '../wm/wm.gyp:wm',
913 ], 917 ],
914 }], 918 }],
915 ], 919 ],
916 }, # target_name: macviews_interactive_ui_tests 920 }, # target_name: macviews_interactive_ui_tests
917 ], # targets 921 ], # targets
918 }], 922 }],
919 ], # conditions 923 ], # conditions
920 } 924 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698