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 17 matching lines...) Expand all Loading... |
28 '../ui.gyp:ui_resources', | 28 '../ui.gyp:ui_resources', |
29 '../ui.gyp:ui_resources_standard', | 29 '../ui.gyp:ui_resources_standard', |
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 'always_on_top_controller.cc', | 36 'always_on_top_controller.cc', |
37 'always_on_top_controller.h', | 37 'always_on_top_controller.h', |
| 38 'app_list.cc', |
| 39 'app_list.h', |
38 'default_container_event_filter.cc', | 40 'default_container_event_filter.cc', |
39 'default_container_event_filter.h', | 41 'default_container_event_filter.h', |
40 'default_container_layout_manager.cc', | 42 'default_container_layout_manager.cc', |
41 'default_container_layout_manager.h', | 43 'default_container_layout_manager.h', |
42 'desktop_background_view.cc', | 44 'desktop_background_view.cc', |
43 'desktop_background_view.h', | 45 'desktop_background_view.h', |
44 'desktop_event_filter.cc', | 46 'desktop_event_filter.cc', |
45 'desktop_event_filter.h', | 47 'desktop_event_filter.h', |
46 'desktop_layout_manager.cc', | 48 'desktop_layout_manager.cc', |
47 'desktop_layout_manager.h', | 49 'desktop_layout_manager.h', |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 'examples/widgets.cc', | 182 'examples/widgets.cc', |
181 'examples/window_type_launcher.cc', | 183 'examples/window_type_launcher.cc', |
182 'examples/window_type_launcher.h', | 184 'examples/window_type_launcher.h', |
183 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 185 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
184 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 186 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
185 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 187 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
186 ], | 188 ], |
187 }, | 189 }, |
188 ], | 190 ], |
189 } | 191 } |
OLD | NEW |