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

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

Issue 8890049: [Aura] Implement views-based applist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased and address comments in #2 Created 9 years 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
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 19 matching lines...) Expand all
30 ], 30 ],
31 'defines': [ 31 'defines': [
32 'AURA_SHELL_IMPLEMENTATION', 32 'AURA_SHELL_IMPLEMENTATION',
33 ], 33 ],
34 'sources': [ 34 'sources': [
35 # All .cc, .h under views, except unittests 35 # All .cc, .h under views, except unittests
36 'activation_controller.cc', 36 'activation_controller.cc',
37 'activation_controller.h', 37 'activation_controller.h',
38 'always_on_top_controller.cc', 38 'always_on_top_controller.cc',
39 'always_on_top_controller.h', 39 'always_on_top_controller.h',
40 'app_list.cc', 40 'app_list/app_list.cc',
41 'app_list.h', 41 'app_list/app_list.h',
42 'app_list/app_list_groups_view.cc',
43 'app_list/app_list_groups_view.h',
44 'app_list/app_list_item_group_model.cc',
45 'app_list/app_list_item_group_model.h',
46 'app_list/app_list_item_group_view.cc',
47 'app_list/app_list_item_group_view.h',
48 'app_list/app_list_item_model.cc',
49 'app_list/app_list_item_model.h',
50 'app_list/app_list_item_model_observer.h',
51 'app_list/app_list_item_view.cc',
52 'app_list/app_list_item_view.h',
53 'app_list/app_list_item_view_listener.h',
54 'app_list/app_list_model.cc',
55 'app_list/app_list_model.h',
56 'app_list/app_list_view.cc',
57 'app_list/app_list_view.h',
58 'app_list/app_list_view_delegate.h',
59 'app_list/drop_shadow_label.cc',
60 'app_list/drop_shadow_label.h',
42 'compact_layout_manager.cc', 61 'compact_layout_manager.cc',
43 'compact_layout_manager.h', 62 'compact_layout_manager.h',
44 'compact_status_area_layout_manager.cc', 63 'compact_status_area_layout_manager.cc',
45 'compact_status_area_layout_manager.h', 64 'compact_status_area_layout_manager.h',
46 'default_container_event_filter.cc', 65 'default_container_event_filter.cc',
47 'default_container_event_filter.h', 66 'default_container_event_filter.h',
48 'default_container_layout_manager.cc', 67 'default_container_layout_manager.cc',
49 'default_container_layout_manager.h', 68 'default_container_layout_manager.h',
50 'desktop_background_view.cc', 69 'desktop_background_view.cc',
51 'desktop_background_view.h', 70 'desktop_background_view.h',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 '../gfx/compositor/compositor.gyp:compositor_test_support', 231 '../gfx/compositor/compositor.gyp:compositor_test_support',
213 '../ui.gyp:gfx_resources', 232 '../ui.gyp:gfx_resources',
214 '../ui.gyp:ui', 233 '../ui.gyp:ui',
215 '../ui.gyp:ui_resources', 234 '../ui.gyp:ui_resources',
216 '../ui.gyp:ui_resources_standard', 235 '../ui.gyp:ui_resources_standard',
217 '../views/views.gyp:views', 236 '../views/views.gyp:views',
218 '../views/views.gyp:views_examples_lib', 237 '../views/views.gyp:views_examples_lib',
219 'aura_shell', 238 'aura_shell',
220 ], 239 ],
221 'sources': [ 240 'sources': [
241 'examples/app_list.cc',
222 'examples/aura_shell_main.cc', 242 'examples/aura_shell_main.cc',
223 'examples/bubble.cc', 243 'examples/bubble.cc',
224 'examples/example_factory.h', 244 'examples/example_factory.h',
225 'examples/lock_view.cc', 245 'examples/lock_view.cc',
226 'examples/toplevel_window.cc', 246 'examples/toplevel_window.cc',
227 'examples/toplevel_window.h', 247 'examples/toplevel_window.h',
228 'examples/widgets.cc', 248 'examples/widgets.cc',
229 'examples/window_type_launcher.cc', 249 'examples/window_type_launcher.cc',
230 'examples/window_type_launcher.h', 250 'examples/window_type_launcher.h',
231 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 251 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
232 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 252 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
233 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc', 253 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
234 ], 254 ],
235 }, 255 },
236 ], 256 ],
237 } 257 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698