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

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: Improved tap-on-selection tests 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 685 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
684 '../gfx/x/gfx_x11.gyp:gfx_x11', 686 '../gfx/x/gfx_x11.gyp:gfx_x11',
685 ], 687 ],
686 }], 688 }],
687 ['use_aura==1', { 689 ['use_aura==1', {
688 'sources': [ 690 'sources': [
689 '<@(views_aura_sources)', 691 '<@(views_aura_sources)',
690 ], 692 ],
691 'dependencies': [ 693 'dependencies': [
692 '../aura/aura.gyp:aura', 694 '../aura/aura.gyp:aura',
695 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
693 '../wm/wm.gyp:wm', 696 '../wm/wm.gyp:wm',
694 ], 697 ],
695 }], 698 }],
696 ['use_aura and chromeos == 0', { 699 ['use_aura and chromeos == 0', {
697 'sources': [ '<@(views_desktop_aura_sources)' ], 700 'sources': [ '<@(views_desktop_aura_sources)' ],
698 'conditions': [ 701 'conditions': [
699 ['OS == "linux"', { 702 ['OS == "linux"', {
700 'sources': [ '<@(views_desktop_aura_linux_sources)' ], 703 'sources': [ '<@(views_desktop_aura_linux_sources)' ],
701 }], 704 }],
702 ['use_x11 == 1', { 705 ['use_x11 == 1', {
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 '../../build/linux/system.gyp:xext', 846 '../../build/linux/system.gyp:xext',
844 '../events/devices/events_devices.gyp:events_devices', 847 '../events/devices/events_devices.gyp:events_devices',
845 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 848 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
846 ], 849 ],
847 }], 850 }],
848 ['use_aura==1', { 851 ['use_aura==1', {
849 'sources': [ '<@(views_unittests_aura_sources)' ], 852 'sources': [ '<@(views_unittests_aura_sources)' ],
850 'dependencies': [ 853 'dependencies': [
851 '../aura/aura.gyp:aura', 854 '../aura/aura.gyp:aura',
852 '../aura/aura.gyp:aura_test_support', 855 '../aura/aura.gyp:aura_test_support',
856 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
853 '../wm/wm.gyp:wm', 857 '../wm/wm.gyp:wm',
854 ], 858 ],
855 'conditions': [ 859 'conditions': [
856 ['chromeos == 0', { 860 ['chromeos == 0', {
857 'sources': [ '<@(views_unittests_desktop_aura_sources)' ], 861 'sources': [ '<@(views_unittests_desktop_aura_sources)' ],
858 }], 862 }],
859 ['chromeos == 0 and use_x11==1', { 863 ['chromeos == 0 and use_x11==1', {
860 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ], 864 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ],
861 }], 865 }],
862 ] 866 ]
(...skipping 48 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