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