OLD | NEW |
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 Loading... |
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', |
| 41 'app_list.h', |
40 'aura_shell_switches.cc', | 42 'aura_shell_switches.cc', |
41 'aura_shell_switches.h', | 43 'aura_shell_switches.h', |
42 'app_list/app_list.cc', | |
43 'app_list/app_list.h', | |
44 'app_list/app_list_groups_view.cc', | |
45 'app_list/app_list_groups_view.h', | |
46 'app_list/app_list_item_group_model.cc', | |
47 'app_list/app_list_item_group_model.h', | |
48 'app_list/app_list_item_group_view.cc', | |
49 'app_list/app_list_item_group_view.h', | |
50 'app_list/app_list_item_model.cc', | |
51 'app_list/app_list_item_model.h', | |
52 'app_list/app_list_item_model_observer.h', | |
53 'app_list/app_list_item_view.cc', | |
54 'app_list/app_list_item_view.h', | |
55 'app_list/app_list_item_view_listener.h', | |
56 'app_list/app_list_model.cc', | |
57 'app_list/app_list_model.h', | |
58 'app_list/app_list_view.cc', | |
59 'app_list/app_list_view.h', | |
60 'app_list/app_list_view_delegate.h', | |
61 'app_list/drop_shadow_label.cc', | |
62 'app_list/drop_shadow_label.h', | |
63 'compact_layout_manager.cc', | 44 'compact_layout_manager.cc', |
64 'compact_layout_manager.h', | 45 'compact_layout_manager.h', |
65 'compact_status_area_layout_manager.cc', | 46 'compact_status_area_layout_manager.cc', |
66 'compact_status_area_layout_manager.h', | 47 'compact_status_area_layout_manager.h', |
67 'default_container_event_filter.cc', | 48 'default_container_event_filter.cc', |
68 'default_container_event_filter.h', | 49 'default_container_event_filter.h', |
69 'default_container_layout_manager.cc', | 50 'default_container_layout_manager.cc', |
70 'default_container_layout_manager.h', | 51 'default_container_layout_manager.h', |
71 'desktop_background_view.cc', | 52 'desktop_background_view.cc', |
72 'desktop_background_view.h', | 53 'desktop_background_view.h', |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 '../gfx/compositor/compositor.gyp:compositor_test_support', | 215 '../gfx/compositor/compositor.gyp:compositor_test_support', |
235 '../ui.gyp:gfx_resources', | 216 '../ui.gyp:gfx_resources', |
236 '../ui.gyp:ui', | 217 '../ui.gyp:ui', |
237 '../ui.gyp:ui_resources', | 218 '../ui.gyp:ui_resources', |
238 '../ui.gyp:ui_resources_standard', | 219 '../ui.gyp:ui_resources_standard', |
239 '../views/views.gyp:views', | 220 '../views/views.gyp:views', |
240 '../views/views.gyp:views_examples_lib', | 221 '../views/views.gyp:views_examples_lib', |
241 'aura_shell', | 222 'aura_shell', |
242 ], | 223 ], |
243 'sources': [ | 224 'sources': [ |
244 'examples/app_list.cc', | |
245 'examples/aura_shell_main.cc', | 225 'examples/aura_shell_main.cc', |
246 'examples/bubble.cc', | 226 'examples/bubble.cc', |
247 'examples/example_factory.h', | 227 'examples/example_factory.h', |
248 'examples/lock_view.cc', | 228 'examples/lock_view.cc', |
249 'examples/toplevel_window.cc', | 229 'examples/toplevel_window.cc', |
250 'examples/toplevel_window.h', | 230 'examples/toplevel_window.h', |
251 'examples/widgets.cc', | 231 'examples/widgets.cc', |
252 'examples/window_type_launcher.cc', | 232 'examples/window_type_launcher.cc', |
253 'examples/window_type_launcher.h', | 233 'examples/window_type_launcher.h', |
254 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 234 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
255 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 235 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
256 '<(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', |
257 ], | 237 ], |
258 }, | 238 }, |
259 ], | 239 ], |
260 } | 240 } |
OLD | NEW |