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

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 overrides in TouchHandleDrawableAura Created 5 years, 11 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 683 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
682 '../gfx/x/gfx_x11.gyp:gfx_x11', 684 '../gfx/x/gfx_x11.gyp:gfx_x11',
683 ], 685 ],
684 }], 686 }],
685 ['use_aura==1', { 687 ['use_aura==1', {
686 'sources': [ 688 'sources': [
687 '<@(views_aura_sources)', 689 '<@(views_aura_sources)',
688 ], 690 ],
689 'dependencies': [ 691 'dependencies': [
690 '../aura/aura.gyp:aura', 692 '../aura/aura.gyp:aura',
693 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
691 '../wm/wm.gyp:wm', 694 '../wm/wm.gyp:wm',
692 ], 695 ],
693 }], 696 }],
694 ['use_aura and chromeos == 0', { 697 ['use_aura and chromeos == 0', {
695 'sources': [ '<@(views_desktop_aura_sources)' ], 698 'sources': [ '<@(views_desktop_aura_sources)' ],
696 'conditions': [ 699 'conditions': [
697 ['OS == "linux"', { 700 ['OS == "linux"', {
698 'sources': [ '<@(views_desktop_aura_linux_sources)' ], 701 'sources': [ '<@(views_desktop_aura_linux_sources)' ],
699 }], 702 }],
700 ['use_x11 == 1', { 703 ['use_x11 == 1', {
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 '../../build/linux/system.gyp:xext', 842 '../../build/linux/system.gyp:xext',
840 '../events/devices/events_devices.gyp:events_devices', 843 '../events/devices/events_devices.gyp:events_devices',
841 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' , 844 '../events/platform/x11/x11_events_platform.gyp:x11_events_platform' ,
842 ], 845 ],
843 }], 846 }],
844 ['use_aura==1', { 847 ['use_aura==1', {
845 'sources': [ '<@(views_unittests_aura_sources)' ], 848 'sources': [ '<@(views_unittests_aura_sources)' ],
846 'dependencies': [ 849 'dependencies': [
847 '../aura/aura.gyp:aura', 850 '../aura/aura.gyp:aura',
848 '../aura/aura.gyp:aura_test_support', 851 '../aura/aura.gyp:aura_test_support',
852 '../touch_selection/ui_touch_selection.gyp:ui_touch_selection',
849 '../wm/wm.gyp:wm', 853 '../wm/wm.gyp:wm',
850 ], 854 ],
851 'conditions': [ 855 'conditions': [
852 ['chromeos == 0', { 856 ['chromeos == 0', {
853 'sources': [ '<@(views_unittests_desktop_aura_sources)' ], 857 'sources': [ '<@(views_unittests_desktop_aura_sources)' ],
854 }], 858 }],
855 ['chromeos == 0 and use_x11==1', { 859 ['chromeos == 0 and use_x11==1', {
856 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ], 860 'sources': [ '<@(views_unittests_desktop_aurax11_sources)' ],
857 }], 861 }],
858 ] 862 ]
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
907 '../aura/aura.gyp:aura', 911 '../aura/aura.gyp:aura',
908 '../wm/wm.gyp:wm', 912 '../wm/wm.gyp:wm',
909 ], 913 ],
910 }], 914 }],
911 ], 915 ],
912 }, # target_name: macviews_interactive_ui_tests 916 }, # target_name: macviews_interactive_ui_tests
913 ], # targets 917 ], # targets
914 }], 918 }],
915 ], # conditions 919 ], # conditions
916 } 920 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698