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

Side by Side Diff: ui/aura_shell/aura_shell.gyp

Issue 9035001: Move some more WM functionality down into ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 12 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 | Annotate | Revision Log
« no previous file with comments | « ash/wm/workspace_controller_unittest.cc ('k') | ui/aura_shell/compact_layout_manager.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 }, 8 },
9 9
10 'targets': [ 10 'targets': [
(...skipping 23 matching lines...) Expand all
34 'sources': [ 34 'sources': [
35 # All .cc, .h under views, except unittests 35 # All .cc, .h under views, except unittests
36 'app_list.cc', 36 'app_list.cc',
37 'app_list.h', 37 'app_list.h',
38 'aura_shell_switches.cc', 38 'aura_shell_switches.cc',
39 'aura_shell_switches.h', 39 'aura_shell_switches.h',
40 'compact_layout_manager.cc', 40 'compact_layout_manager.cc',
41 'compact_layout_manager.h', 41 'compact_layout_manager.h',
42 'compact_status_area_layout_manager.cc', 42 'compact_status_area_layout_manager.cc',
43 'compact_status_area_layout_manager.h', 43 'compact_status_area_layout_manager.h',
44 'default_container_event_filter.cc',
45 'default_container_event_filter.h',
46 'default_container_layout_manager.cc',
47 'default_container_layout_manager.h',
48 'desktop_background_view.cc', 44 'desktop_background_view.cc',
49 'desktop_background_view.h', 45 'desktop_background_view.h',
50 'root_window_event_filter.cc',
51 'root_window_event_filter.h',
52 'root_window_layout_manager.cc',
53 'root_window_layout_manager.h',
54 'drag_drop_controller.cc', 46 'drag_drop_controller.cc',
55 'drag_drop_controller.h', 47 'drag_drop_controller.h',
56 'drag_image_view.cc', 48 'drag_image_view.cc',
57 'drag_image_view.h', 49 'drag_image_view.h',
58 'launcher/app_launcher_button.cc', 50 'launcher/app_launcher_button.cc',
59 'launcher/app_launcher_button.h', 51 'launcher/app_launcher_button.h',
60 'launcher/launcher.cc', 52 'launcher/launcher.cc',
61 'launcher/launcher.h', 53 'launcher/launcher.h',
62 'launcher/launcher_model.cc', 54 'launcher/launcher_model.cc',
63 'launcher/launcher_model.h', 55 'launcher/launcher_model.h',
64 'launcher/launcher_model_observer.h', 56 'launcher/launcher_model_observer.h',
65 'launcher/launcher_types.h', 57 'launcher/launcher_types.h',
66 'launcher/launcher_view.cc', 58 'launcher/launcher_view.cc',
67 'launcher/launcher_view.h', 59 'launcher/launcher_view.h',
68 'launcher/tabbed_launcher_button.cc', 60 'launcher/tabbed_launcher_button.cc',
69 'launcher/tabbed_launcher_button.h', 61 'launcher/tabbed_launcher_button.h',
70 'launcher/view_model.cc', 62 'launcher/view_model.cc',
71 'launcher/view_model.h', 63 'launcher/view_model.h',
72 'launcher/view_model_utils.cc', 64 'launcher/view_model_utils.cc',
73 'launcher/view_model_utils.h', 65 'launcher/view_model_utils.h',
74 'property_util.cc',
75 'property_util.h',
76 'shelf_layout_manager.cc', 66 'shelf_layout_manager.cc',
77 'shelf_layout_manager.h', 67 'shelf_layout_manager.h',
78 'shell.cc', 68 'shell.cc',
79 'shell.h', 69 'shell.h',
80 'shell_accelerator_controller.cc', 70 'shell_accelerator_controller.cc',
81 'shell_accelerator_controller.h', 71 'shell_accelerator_controller.h',
82 'shell_accelerator_filter.cc', 72 'shell_accelerator_filter.cc',
83 'shell_accelerator_filter.h', 73 'shell_accelerator_filter.h',
84 'shell_delegate.h', 74 'shell_delegate.h',
85 'shell_factory.h', 75 'shell_factory.h',
86 'shell_window_ids.h', 76 'shell_window_ids.h',
87 'status_area_layout_manager.cc', 77 'status_area_layout_manager.cc',
88 'status_area_layout_manager.h', 78 'status_area_layout_manager.h',
89 'status_area_view.cc', 79 'status_area_view.cc',
90 'status_area_view.h', 80 'status_area_view.h',
91 'tooltip_controller.cc', 81 'tooltip_controller.cc',
92 'tooltip_controller.h', 82 'tooltip_controller.h',
93 'toplevel_frame_view.cc',
94 'toplevel_frame_view.h',
95 'toplevel_layout_manager.cc',
96 'toplevel_layout_manager.h',
97 'toplevel_window_event_filter.cc',
98 'toplevel_window_event_filter.h',
99 'window_frame.cc',
100 'window_frame.h',
101 'window_properties.cc',
102 'window_properties.h',
103 'window_util.cc',
104 'window_util.h',
105 'workspace_controller.cc',
106 'workspace_controller.h',
107 'workspace/workspace.cc',
108 'workspace/workspace.h',
109 'workspace/workspace_manager.cc',
110 'workspace/workspace_manager.h',
111 'workspace/workspace_observer.h',
112 '../../ash/wm/activation_controller.cc', 83 '../../ash/wm/activation_controller.cc',
113 '../../ash/wm/activation_controller.h', 84 '../../ash/wm/activation_controller.h',
114 '../../ash/wm/always_on_top_controller.cc', 85 '../../ash/wm/always_on_top_controller.cc',
115 '../../ash/wm/always_on_top_controller.h', 86 '../../ash/wm/always_on_top_controller.h',
87 '../../ash/wm/default_container_event_filter.cc',
88 '../../ash/wm/default_container_event_filter.h',
89 '../../ash/wm/default_container_layout_manager.cc',
90 '../../ash/wm/default_container_layout_manager.h',
116 '../../ash/wm/image_grid.cc', 91 '../../ash/wm/image_grid.cc',
117 '../../ash/wm/image_grid.h', 92 '../../ash/wm/image_grid.h',
118 '../../ash/wm/modal_container_layout_manager.cc', 93 '../../ash/wm/modal_container_layout_manager.cc',
119 '../../ash/wm/modal_container_layout_manager.h', 94 '../../ash/wm/modal_container_layout_manager.h',
120 '../../ash/wm/modality_event_filter.cc', 95 '../../ash/wm/modality_event_filter.cc',
121 '../../ash/wm/modality_event_filter.h', 96 '../../ash/wm/modality_event_filter.h',
122 '../../ash/wm/modality_event_filter_delegate.h', 97 '../../ash/wm/modality_event_filter_delegate.h',
98 '../../ash/wm/property_util.cc',
99 '../../ash/wm/property_util.h',
100 '../../ash/wm/root_window_event_filter.cc',
101 '../../ash/wm/root_window_event_filter.h',
102 '../../ash/wm/root_window_layout_manager.cc',
103 '../../ash/wm/root_window_layout_manager.h',
123 '../../ash/wm/shadow.cc', 104 '../../ash/wm/shadow.cc',
124 '../../ash/wm/shadow.h', 105 '../../ash/wm/shadow.h',
125 '../../ash/wm/shadow_controller.cc', 106 '../../ash/wm/shadow_controller.cc',
126 '../../ash/wm/shadow_controller.h', 107 '../../ash/wm/shadow_controller.h',
127 '../../ash/wm/shadow_types.cc', 108 '../../ash/wm/shadow_types.cc',
128 '../../ash/wm/shadow_types.h', 109 '../../ash/wm/shadow_types.h',
129 '../../ash/wm/show_state_controller.h', 110 '../../ash/wm/show_state_controller.h',
130 '../../ash/wm/show_state_controller.cc', 111 '../../ash/wm/show_state_controller.cc',
131 '../../ash/wm/stacking_controller.cc', 112 '../../ash/wm/stacking_controller.cc',
132 '../../ash/wm/stacking_controller.h', 113 '../../ash/wm/stacking_controller.h',
114 '../../ash/wm/toplevel_frame_view.cc',
115 '../../ash/wm/toplevel_frame_view.h',
116 '../../ash/wm/toplevel_layout_manager.cc',
117 '../../ash/wm/toplevel_layout_manager.h',
118 '../../ash/wm/toplevel_window_event_filter.cc',
119 '../../ash/wm/toplevel_window_event_filter.h',
120 '../../ash/wm/window_frame.cc',
121 '../../ash/wm/window_frame.h',
122 '../../ash/wm/window_properties.cc',
123 '../../ash/wm/window_properties.h',
124 '../../ash/wm/window_util.cc',
125 '../../ash/wm/window_util.h',
126 '../../ash/wm/workspace_controller.cc',
127 '../../ash/wm/workspace_controller.h',
128 '../../ash/wm/workspace/workspace.cc',
129 '../../ash/wm/workspace/workspace.h',
130 '../../ash/wm/workspace/workspace_manager.cc',
131 '../../ash/wm/workspace/workspace_manager.h',
132 '../../ash/wm/workspace/workspace_observer.h',
133 ], 133 ],
134 }, 134 },
135 { 135 {
136 'target_name': 'aura_shell_unittests', 136 'target_name': 'aura_shell_unittests',
137 'type': 'executable', 137 'type': 'executable',
138 'dependencies': [ 138 'dependencies': [
139 '../../base/base.gyp:base', 139 '../../base/base.gyp:base',
140 '../../base/base.gyp:test_support_base', 140 '../../base/base.gyp:test_support_base',
141 '../../chrome/chrome_resources.gyp:packed_resources', 141 '../../chrome/chrome_resources.gyp:packed_resources',
142 '../../build/temp_gyp/googleurl.gyp:googleurl', 142 '../../build/temp_gyp/googleurl.gyp:googleurl',
143 '../../skia/skia.gyp:skia', 143 '../../skia/skia.gyp:skia',
144 '../../testing/gtest.gyp:gtest', 144 '../../testing/gtest.gyp:gtest',
145 '../../third_party/icu/icu.gyp:icui18n', 145 '../../third_party/icu/icu.gyp:icui18n',
146 '../../third_party/icu/icu.gyp:icuuc', 146 '../../third_party/icu/icu.gyp:icuuc',
147 '../aura/aura.gyp:aura', 147 '../aura/aura.gyp:aura',
148 '../aura/aura.gyp:test_support_aura', 148 '../aura/aura.gyp:test_support_aura',
149 '../gfx/compositor/compositor.gyp:compositor_test_support', 149 '../gfx/compositor/compositor.gyp:compositor_test_support',
150 '../ui.gyp:gfx_resources', 150 '../ui.gyp:gfx_resources',
151 '../ui.gyp:ui', 151 '../ui.gyp:ui',
152 '../ui.gyp:ui_resources', 152 '../ui.gyp:ui_resources',
153 '../ui.gyp:ui_resources_standard', 153 '../ui.gyp:ui_resources_standard',
154 '../views/views.gyp:views', 154 '../views/views.gyp:views',
155 'aura_shell', 155 'aura_shell',
156 ], 156 ],
157 'sources': [ 157 'sources': [
158 'default_container_layout_manager_unittest.cc',
159 'root_window_event_filter_unittest.cc',
160 'drag_drop_controller_unittest.cc', 158 'drag_drop_controller_unittest.cc',
161 'launcher/launcher_model_unittest.cc', 159 'launcher/launcher_model_unittest.cc',
162 'launcher/launcher_unittest.cc', 160 'launcher/launcher_unittest.cc',
163 'launcher/view_model_unittest.cc', 161 'launcher/view_model_unittest.cc',
164 'launcher/view_model_utils_unittest.cc', 162 'launcher/view_model_utils_unittest.cc',
165 'run_all_unittests.cc', 163 'run_all_unittests.cc',
166 'shelf_layout_manager_unittest.cc', 164 'shelf_layout_manager_unittest.cc',
167 'shell_accelerator_controller_unittest.cc', 165 'shell_accelerator_controller_unittest.cc',
168 'shell_unittest.cc', 166 'shell_unittest.cc',
169 'test_suite.cc', 167 'test_suite.cc',
170 'test_suite.h', 168 'test_suite.h',
171 'test/aura_shell_test_base.cc', 169 'test/aura_shell_test_base.cc',
172 'test/aura_shell_test_base.h', 170 'test/aura_shell_test_base.h',
173 'test/test_activation_delegate.cc', 171 'test/test_activation_delegate.cc',
174 'test/test_activation_delegate.h', 172 'test/test_activation_delegate.h',
175 'test/test_shell_delegate.cc', 173 'test/test_shell_delegate.cc',
176 'test/test_shell_delegate.h', 174 'test/test_shell_delegate.h',
177 'tooltip_controller_unittest.cc', 175 'tooltip_controller_unittest.cc',
178 'toplevel_layout_manager_unittest.cc',
179 'toplevel_window_event_filter_unittest.cc',
180 'workspace_controller_unittest.cc',
181 'workspace/workspace_manager_unittest.cc',
182 '../../ash/wm/activation_controller_unittest.cc', 176 '../../ash/wm/activation_controller_unittest.cc',
177 '../../ash/wm/default_container_layout_manager_unittest.cc',
183 '../../ash/wm/image_grid_unittest.cc', 178 '../../ash/wm/image_grid_unittest.cc',
184 '../../ash/wm/modal_container_layout_manager_unittest.cc', 179 '../../ash/wm/modal_container_layout_manager_unittest.cc',
180 '../../ash/wm/root_window_event_filter_unittest.cc',
185 '../../ash/wm/shadow_controller_unittest.cc', 181 '../../ash/wm/shadow_controller_unittest.cc',
182 '../../ash/wm/toplevel_layout_manager_unittest.cc',
183 '../../ash/wm/toplevel_window_event_filter_unittest.cc',
184 '../../ash/wm/workspace_controller_unittest.cc',
185 '../../ash/wm/workspace/workspace_manager_unittest.cc',
186 186
187 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 187 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
188 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 188 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
189 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc', 189 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
190 ], 190 ],
191 'conditions': [ 191 'conditions': [
192 ['use_webkit_compositor==1', { 192 ['use_webkit_compositor==1', {
193 'dependencies': [ 193 'dependencies': [
194 '../gfx/compositor/compositor.gyp:compositor', 194 '../gfx/compositor/compositor.gyp:compositor',
195 ], 195 ],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 '../../ash/shell/widgets.cc', 231 '../../ash/shell/widgets.cc',
232 '../../ash/shell/window_type_launcher.cc', 232 '../../ash/shell/window_type_launcher.cc',
233 '../../ash/shell/window_type_launcher.h', 233 '../../ash/shell/window_type_launcher.h',
234 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 234 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
235 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 235 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
236 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc', 236 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
237 ], 237 ],
238 }, 238 },
239 ], 239 ],
240 } 240 }
OLDNEW
« no previous file with comments | « ash/wm/workspace_controller_unittest.cc ('k') | ui/aura_shell/compact_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698