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

Side by Side Diff: ash/ash.gyp

Issue 2171813004: mash: Fold ShelfItemDelegateManager into ShelfModel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 5 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.cc', 10 'accelerators/accelerator_commands.cc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'common/shelf/overflow_bubble.h', 102 'common/shelf/overflow_bubble.h',
103 'common/shelf/overflow_bubble_view.cc', 103 'common/shelf/overflow_bubble_view.cc',
104 'common/shelf/overflow_bubble_view.h', 104 'common/shelf/overflow_bubble_view.h',
105 'common/shelf/overflow_button.cc', 105 'common/shelf/overflow_button.cc',
106 'common/shelf/overflow_button.h', 106 'common/shelf/overflow_button.h',
107 'common/shelf/shelf_alignment_menu.cc', 107 'common/shelf/shelf_alignment_menu.cc',
108 'common/shelf/shelf_alignment_menu.h', 108 'common/shelf/shelf_alignment_menu.h',
109 'common/shelf/shelf_constants.cc', 109 'common/shelf/shelf_constants.cc',
110 'common/shelf/shelf_constants.h', 110 'common/shelf/shelf_constants.h',
111 'common/shelf/shelf_item_delegate.h', 111 'common/shelf/shelf_item_delegate.h',
112 'common/shelf/shelf_item_delegate_manager.cc',
113 'common/shelf/shelf_item_delegate_manager.h',
114 'common/shelf/shelf_item_types.cc', 112 'common/shelf/shelf_item_types.cc',
115 'common/shelf/shelf_item_types.h', 113 'common/shelf/shelf_item_types.h',
116 'common/shelf/shelf_locking_manager.cc', 114 'common/shelf/shelf_locking_manager.cc',
117 'common/shelf/shelf_locking_manager.h', 115 'common/shelf/shelf_locking_manager.h',
118 'common/shelf/shelf_menu_model.h', 116 'common/shelf/shelf_menu_model.h',
119 'common/shelf/shelf_model.cc', 117 'common/shelf/shelf_model.cc',
120 'common/shelf/shelf_model.h', 118 'common/shelf/shelf_model.h',
121 'common/shelf/shelf_model_observer.h', 119 'common/shelf/shelf_model_observer.h',
122 'common/shelf/shelf_navigator.cc', 120 'common/shelf/shelf_navigator.cc',
123 'common/shelf/shelf_navigator.h', 121 'common/shelf/shelf_navigator.h',
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 'test/display_manager_test_api.cc', 800 'test/display_manager_test_api.cc',
803 'test/display_manager_test_api.h', 801 'test/display_manager_test_api.h',
804 'test/material_design_controller_test_api.cc', 802 'test/material_design_controller_test_api.cc',
805 'test/material_design_controller_test_api.h', 803 'test/material_design_controller_test_api.h',
806 'test/mirror_window_test_api.cc', 804 'test/mirror_window_test_api.cc',
807 'test/mirror_window_test_api.h', 805 'test/mirror_window_test_api.h',
808 'test/overflow_bubble_view_test_api.cc', 806 'test/overflow_bubble_view_test_api.cc',
809 'test/overflow_bubble_view_test_api.h', 807 'test/overflow_bubble_view_test_api.h',
810 'test/shelf_button_pressed_metric_tracker_test_api.cc', 808 'test/shelf_button_pressed_metric_tracker_test_api.cc',
811 'test/shelf_button_pressed_metric_tracker_test_api.h', 809 'test/shelf_button_pressed_metric_tracker_test_api.h',
812 'test/shelf_item_delegate_manager_test_api.cc',
813 'test/shelf_item_delegate_manager_test_api.h',
814 'test/shelf_test_api.h', 810 'test/shelf_test_api.h',
815 'test/shelf_view_test_api.cc', 811 'test/shelf_view_test_api.cc',
816 'test/shelf_view_test_api.h', 812 'test/shelf_view_test_api.h',
817 'test/shell_test_api.cc', 813 'test/shell_test_api.cc',
818 'test/shell_test_api.h', 814 'test/shell_test_api.h',
819 'test/status_area_widget_test_helper.cc', 815 'test/status_area_widget_test_helper.cc',
820 'test/status_area_widget_test_helper.h', 816 'test/status_area_widget_test_helper.h',
821 'test/task_switch_time_tracker_test_api.cc', 817 'test/task_switch_time_tracker_test_api.cc',
822 'test/task_switch_time_tracker_test_api.h', 818 'test/task_switch_time_tracker_test_api.h',
823 'test/test_activation_delegate.cc', 819 'test/test_activation_delegate.cc',
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
1466 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1462 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1467 ], 1463 ],
1468 } 1464 }
1469 ], 1465 ],
1470 ], 1466 ],
1471 }, 1467 },
1472 ], 1468 ],
1473 }], 1469 }],
1474 ], 1470 ],
1475 } 1471 }
OLDNEW
« no previous file with comments | « no previous file | ash/common/shelf/app_list_shelf_item_delegate.h » ('j') | ash/common/shelf/app_list_shelf_item_delegate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698