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

Side by Side Diff: ash/ash.gyp

Issue 2206033002: mash: Migrate ash::DragImageView to wm common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 4 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
« no previous file with comments | « no previous file | ash/common/drag_drop/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'ash_sources': [ 9 'ash_sources': [
10 'accelerators/accelerator_commands_aura.cc', 10 'accelerators/accelerator_commands_aura.cc',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'common/ash_layout_constants.cc', 64 'common/ash_layout_constants.cc',
65 'common/ash_layout_constants.h', 65 'common/ash_layout_constants.h',
66 'common/ash_switches.cc', 66 'common/ash_switches.cc',
67 'common/ash_switches.h', 67 'common/ash_switches.h',
68 'common/cast_config_delegate.cc', 68 'common/cast_config_delegate.cc',
69 'common/cast_config_delegate.h', 69 'common/cast_config_delegate.h',
70 'common/default_accessibility_delegate.cc', 70 'common/default_accessibility_delegate.cc',
71 'common/default_accessibility_delegate.h', 71 'common/default_accessibility_delegate.h',
72 'common/display/display_info.cc', 72 'common/display/display_info.cc',
73 'common/display/display_info.h', 73 'common/display/display_info.h',
74 'common/drag_drop/drag_image_view.cc',
75 'common/drag_drop/drag_image_view.h',
74 'common/focus_cycler.cc', 76 'common/focus_cycler.cc',
75 'common/focus_cycler.h', 77 'common/focus_cycler.h',
76 'common/gpu_support.h', 78 'common/gpu_support.h',
77 'common/gpu_support_stub.cc', 79 'common/gpu_support_stub.cc',
78 'common/gpu_support_stub.h', 80 'common/gpu_support_stub.h',
79 'common/keyboard/keyboard_ui.cc', 81 'common/keyboard/keyboard_ui.cc',
80 'common/keyboard/keyboard_ui.h', 82 'common/keyboard/keyboard_ui.h',
81 'common/keyboard/keyboard_ui_observer.h', 83 'common/keyboard/keyboard_ui_observer.h',
82 'common/login_status.h', 84 'common/login_status.h',
83 'common/material_design/material_design_controller.cc', 85 'common/material_design/material_design_controller.cc',
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 'display/shared_display_edge_indicator.cc', 557 'display/shared_display_edge_indicator.cc',
556 'display/shared_display_edge_indicator.h', 558 'display/shared_display_edge_indicator.h',
557 'display/unified_mouse_warp_controller.cc', 559 'display/unified_mouse_warp_controller.cc',
558 'display/unified_mouse_warp_controller.h', 560 'display/unified_mouse_warp_controller.h',
559 'display/window_tree_host_manager.cc', 561 'display/window_tree_host_manager.cc',
560 'display/window_tree_host_manager.h', 562 'display/window_tree_host_manager.h',
561 'drag_drop/drag_drop_controller.cc', 563 'drag_drop/drag_drop_controller.cc',
562 'drag_drop/drag_drop_controller.h', 564 'drag_drop/drag_drop_controller.h',
563 'drag_drop/drag_drop_tracker.cc', 565 'drag_drop/drag_drop_tracker.cc',
564 'drag_drop/drag_drop_tracker.h', 566 'drag_drop/drag_drop_tracker.h',
565 'drag_drop/drag_image_view.cc',
566 'drag_drop/drag_image_view.h',
567 'first_run/desktop_cleaner.cc', 567 'first_run/desktop_cleaner.cc',
568 'first_run/desktop_cleaner.h', 568 'first_run/desktop_cleaner.h',
569 'first_run/first_run_helper.cc', 569 'first_run/first_run_helper.cc',
570 'first_run/first_run_helper.h', 570 'first_run/first_run_helper.h',
571 'first_run/first_run_helper_impl.cc', 571 'first_run/first_run_helper_impl.cc',
572 'first_run/first_run_helper_impl.h', 572 'first_run/first_run_helper_impl.h',
573 'frame/caption_buttons/caption_button_types.h', 573 'frame/caption_buttons/caption_button_types.h',
574 'frame/caption_buttons/frame_caption_button.cc', 574 'frame/caption_buttons/frame_caption_button.cc',
575 'frame/caption_buttons/frame_caption_button.h', 575 'frame/caption_buttons/frame_caption_button.h',
576 'frame/caption_buttons/frame_caption_button_container_view.cc', 576 'frame/caption_buttons/frame_caption_button_container_view.cc',
(...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after
1482 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1482 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1483 ], 1483 ],
1484 } 1484 }
1485 ], 1485 ],
1486 ], 1486 ],
1487 }, 1487 },
1488 ], 1488 ],
1489 }], 1489 }],
1490 ], 1490 ],
1491 } 1491 }
OLDNEW
« no previous file with comments | « no previous file | ash/common/drag_drop/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698