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

Side by Side Diff: ash/ash.gyp

Issue 2293183002: ash: Remove ash::Shelf in favor of ash::WmShelf (Closed)
Patch Set: rebase again Created 4 years, 3 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 { 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'common/shelf/app_list_button.h', 121 'common/shelf/app_list_button.h',
122 'common/shelf/app_list_shelf_item_delegate.cc', 122 'common/shelf/app_list_shelf_item_delegate.cc',
123 'common/shelf/app_list_shelf_item_delegate.h', 123 'common/shelf/app_list_shelf_item_delegate.h',
124 'common/shelf/ink_drop_button_listener.h', 124 'common/shelf/ink_drop_button_listener.h',
125 'common/shelf/overflow_bubble.cc', 125 'common/shelf/overflow_bubble.cc',
126 'common/shelf/overflow_bubble.h', 126 'common/shelf/overflow_bubble.h',
127 'common/shelf/overflow_bubble_view.cc', 127 'common/shelf/overflow_bubble_view.cc',
128 'common/shelf/overflow_bubble_view.h', 128 'common/shelf/overflow_bubble_view.h',
129 'common/shelf/overflow_button.cc', 129 'common/shelf/overflow_button.cc',
130 'common/shelf/overflow_button.h', 130 'common/shelf/overflow_button.h',
131 'common/shelf/shelf.cc',
132 'common/shelf/shelf.h',
133 'common/shelf/shelf_alignment_menu.cc', 131 'common/shelf/shelf_alignment_menu.cc',
134 'common/shelf/shelf_alignment_menu.h', 132 'common/shelf/shelf_alignment_menu.h',
135 'common/shelf/shelf_background_animator.cc', 133 'common/shelf/shelf_background_animator.cc',
136 'common/shelf/shelf_background_animator.h', 134 'common/shelf/shelf_background_animator.h',
137 'common/shelf/shelf_background_animator_observer.h', 135 'common/shelf/shelf_background_animator_observer.h',
138 'common/shelf/shelf_button.cc', 136 'common/shelf/shelf_button.cc',
139 'common/shelf/shelf_button.h', 137 'common/shelf/shelf_button.h',
140 'common/shelf/shelf_button_pressed_metric_tracker.cc', 138 'common/shelf/shelf_button_pressed_metric_tracker.cc',
141 'common/shelf/shelf_button_pressed_metric_tracker.h', 139 'common/shelf/shelf_button_pressed_metric_tracker.h',
142 'common/shelf/shelf_constants.cc', 140 'common/shelf/shelf_constants.cc',
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 'test/display_manager_test_api.cc', 842 'test/display_manager_test_api.cc',
845 'test/display_manager_test_api.h', 843 'test/display_manager_test_api.h',
846 'test/immersive_fullscreen_controller_test_api.cc', 844 'test/immersive_fullscreen_controller_test_api.cc',
847 'test/immersive_fullscreen_controller_test_api.h', 845 'test/immersive_fullscreen_controller_test_api.h',
848 'test/mirror_window_test_api.cc', 846 'test/mirror_window_test_api.cc',
849 'test/mirror_window_test_api.h', 847 'test/mirror_window_test_api.h',
850 'test/overflow_bubble_view_test_api.cc', 848 'test/overflow_bubble_view_test_api.cc',
851 'test/overflow_bubble_view_test_api.h', 849 'test/overflow_bubble_view_test_api.h',
852 'test/shelf_button_pressed_metric_tracker_test_api.cc', 850 'test/shelf_button_pressed_metric_tracker_test_api.cc',
853 'test/shelf_button_pressed_metric_tracker_test_api.h', 851 'test/shelf_button_pressed_metric_tracker_test_api.h',
854 'test/shelf_test_api.h',
855 'test/shelf_view_test_api.cc', 852 'test/shelf_view_test_api.cc',
856 'test/shelf_view_test_api.h', 853 'test/shelf_view_test_api.h',
857 'test/shell_test_api.cc', 854 'test/shell_test_api.cc',
858 'test/shell_test_api.h', 855 'test/shell_test_api.h',
859 'test/status_area_widget_test_helper.cc', 856 'test/status_area_widget_test_helper.cc',
860 'test/status_area_widget_test_helper.h', 857 'test/status_area_widget_test_helper.h',
861 'test/task_switch_time_tracker_test_api.cc', 858 'test/task_switch_time_tracker_test_api.cc',
862 'test/task_switch_time_tracker_test_api.h', 859 'test/task_switch_time_tracker_test_api.h',
863 'test/test_activation_delegate.cc', 860 'test/test_activation_delegate.cc',
864 'test/test_activation_delegate.h', 861 'test/test_activation_delegate.h',
(...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1510 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1514 ], 1511 ],
1515 } 1512 }
1516 ], 1513 ],
1517 ], 1514 ],
1518 }, 1515 },
1519 ], 1516 ],
1520 }], 1517 }],
1521 ], 1518 ],
1522 } 1519 }
OLDNEW
« no previous file with comments | « ash/accelerators/accelerator_controller_delegate_aura.cc ('k') | ash/aura/wm_root_window_controller_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698