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 15 matching lines...) Expand all Loading... |
26 '../gfx/compositor/compositor.gyp:compositor', | 26 '../gfx/compositor/compositor.gyp:compositor', |
27 '../ui.gyp:ui', | 27 '../ui.gyp:ui', |
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', |
| 37 'always_on_top_controller.h', |
36 'default_container_event_filter.cc', | 38 'default_container_event_filter.cc', |
37 'default_container_event_filter.h', | 39 'default_container_event_filter.h', |
38 'default_container_layout_manager.cc', | 40 'default_container_layout_manager.cc', |
39 'default_container_layout_manager.h', | 41 'default_container_layout_manager.h', |
40 'desktop_background_view.cc', | 42 'desktop_background_view.cc', |
41 'desktop_background_view.h', | 43 'desktop_background_view.h', |
42 'desktop_event_filter.cc', | 44 'desktop_event_filter.cc', |
43 'desktop_event_filter.h', | 45 'desktop_event_filter.h', |
44 'desktop_layout_manager.cc', | 46 'desktop_layout_manager.cc', |
45 'desktop_layout_manager.h', | 47 'desktop_layout_manager.h', |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 '../aura/aura.gyp:test_support_aura', | 116 '../aura/aura.gyp:test_support_aura', |
115 'aura_shell', | 117 'aura_shell', |
116 ], | 118 ], |
117 'sources': [ | 119 'sources': [ |
118 'default_container_layout_manager_unittest.cc', | 120 'default_container_layout_manager_unittest.cc', |
119 'desktop_event_filter_unittest.cc', | 121 'desktop_event_filter_unittest.cc', |
120 'launcher/launcher_model_unittest.cc', | 122 'launcher/launcher_model_unittest.cc', |
121 'launcher/view_model_unittest.cc', | 123 'launcher/view_model_unittest.cc', |
122 'launcher/view_model_utils_unittest.cc', | 124 'launcher/view_model_utils_unittest.cc', |
123 'run_all_unittests.cc', | 125 'run_all_unittests.cc', |
| 126 'shell_unittest.cc', |
124 'stacking_controller_unittest.cc', | 127 'stacking_controller_unittest.cc', |
125 'test_suite.cc', | 128 'test_suite.cc', |
126 'test_suite.h', | 129 'test_suite.h', |
| 130 'test/aura_shell_test_base.cc', |
| 131 'test/aura_shell_test_base.h', |
127 'toplevel_layout_manager_unittest.cc', | 132 'toplevel_layout_manager_unittest.cc', |
128 'toplevel_window_event_filter_unittest.cc', | 133 'toplevel_window_event_filter_unittest.cc', |
129 'workspace_controller_unittest.cc', | 134 'workspace_controller_unittest.cc', |
130 'workspace/workspace_manager_unittest.cc', | 135 'workspace/workspace_manager_unittest.cc', |
131 | 136 |
132 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 137 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
133 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 138 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
134 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 139 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
135 ], | 140 ], |
136 }, | 141 }, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 '../../views/views.gyp:views_desktop', | 185 '../../views/views.gyp:views_desktop', |
181 '../../views/views.gyp:views_desktop_lib', | 186 '../../views/views.gyp:views_desktop_lib', |
182 '../../views/views.gyp:views_unittests', | 187 '../../views/views.gyp:views_unittests', |
183 '../aura/aura.gyp:*', | 188 '../aura/aura.gyp:*', |
184 '../gfx/compositor/compositor.gyp:*', | 189 '../gfx/compositor/compositor.gyp:*', |
185 'aura_shell_exe', | 190 'aura_shell_exe', |
186 ], | 191 ], |
187 }, | 192 }, |
188 ], | 193 ], |
189 } | 194 } |
OLD | NEW |