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

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: Cleanup - ready for review Created 5 years, 10 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 686 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
685 '../gfx/x/gfx_x11.gyp:gfx_x11', 687 '../gfx/x/gfx_x11.gyp:gfx_x11',
686 ], 688 ],
687 }], 689 }],
688 ['use_aura==1', { 690 ['use_aura==1', {
689 'sources': [ 691 'sources': [
690 '<@(views_aura_sources)', 692 '<@(views_aura_sources)',
691 ], 693 ],
692 'dependencies': [ 694 'dependencies': [
693 '../aura/aura.gyp:aura', 695 '../aura/aura.gyp:aura',
696 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
694 '../wm/wm.gyp:wm', 697 '../wm/wm.gyp:wm',
695 ], 698 ],
696 }], 699 }],
697 ['use_aura and chromeos == 0', { 700 ['use_aura and chromeos == 0', {
698 'sources': [ '<@(views_desktop_aura_sources)' ], 701 'sources': [ '<@(views_desktop_aura_sources)' ],
699 'conditions': [ 702 'conditions': [
700 ['OS == "linux"', { 703 ['OS == "linux"', {
701 'sources': [ '<@(views_desktop_aura_linux_sources)' ], 704 'sources': [ '<@(views_desktop_aura_linux_sources)' ],
702 }], 705 }],
703 ['use_x11 == 1', { 706 ['use_x11 == 1', {
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 '../../build/linux/system.gyp:xext', 847 '../../build/linux/system.gyp:xext',
845 '../events/devices/events_devices.gyp:events_devices', 848 '../events/devices/events_devices.gyp:events_devices',
846 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 849 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
847 ], 850 ],
848 }], 851 }],
849 ['use_aura==1', { 852 ['use_aura==1', {
850 'sources': [ '<@(views_unittests_aura_sources)' ], 853 'sources': [ '<@(views_unittests_aura_sources)' ],
851 'dependencies': [ 854 'dependencies': [
852 '../aura/aura.gyp:aura', 855 '../aura/aura.gyp:aura',
853 '../aura/aura.gyp:aura_test_support', 856 '../aura/aura.gyp:aura_test_support',
857 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
854 '../wm/wm.gyp:wm', 858 '../wm/wm.gyp:wm',
855 ], 859 ],
856 'conditions': [ 860 'conditions': [
857 ['chromeos == 0', { 861 ['chromeos == 0', {
858 'sources': [ '<@(views_unittests_desktop_aura_sources)' ], 862 'sources': [ '<@(views_unittests_desktop_aura_sources)' ],
859 }], 863 }],
860 ['chromeos == 0 and use_x11==1', { 864 ['chromeos == 0 and use_x11==1', {
861 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ], 865 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ],
862 }], 866 }],
863 ] 867 ]
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
912 '../aura/aura.gyp:aura', 916 '../aura/aura.gyp:aura',
913 '../wm/wm.gyp:wm', 917 '../wm/wm.gyp:wm',
914 ], 918 ],
915 }], 919 }],
916 ], 920 ],
917 }, # target_name: macviews_interactive_ui_tests 921 }, # target_name: macviews_interactive_ui_tests
918 ], # targets 922 ], # targets
919 }], 923 }],
920 ], # conditions 924 ], # conditions
921 } 925 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698