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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 '../../base/base.gyp:test_support_base', | 128 '../../base/base.gyp:test_support_base', |
129 '../../chrome/chrome_resources.gyp:packed_resources', | 129 '../../chrome/chrome_resources.gyp:packed_resources', |
130 '../../build/temp_gyp/googleurl.gyp:googleurl', | 130 '../../build/temp_gyp/googleurl.gyp:googleurl', |
131 '../../skia/skia.gyp:skia', | 131 '../../skia/skia.gyp:skia', |
132 '../../testing/gtest.gyp:gtest', | 132 '../../testing/gtest.gyp:gtest', |
133 '../../third_party/icu/icu.gyp:icui18n', | 133 '../../third_party/icu/icu.gyp:icui18n', |
134 '../../third_party/icu/icu.gyp:icuuc', | 134 '../../third_party/icu/icu.gyp:icuuc', |
135 '../aura/aura.gyp:aura', | 135 '../aura/aura.gyp:aura', |
136 '../aura/aura.gyp:test_support_aura', | 136 '../aura/aura.gyp:test_support_aura', |
137 '../gfx/compositor/compositor.gyp:compositor_test_support', | 137 '../gfx/compositor/compositor.gyp:compositor_test_support', |
| 138 '../gfx/compositor/compositor.gyp:test_compositor', |
138 '../ui.gyp:gfx_resources', | 139 '../ui.gyp:gfx_resources', |
139 '../ui.gyp:ui', | 140 '../ui.gyp:ui', |
140 '../ui.gyp:ui_resources', | 141 '../ui.gyp:ui_resources', |
141 '../ui.gyp:ui_resources_standard', | 142 '../ui.gyp:ui_resources_standard', |
142 '../views/views.gyp:views', | 143 '../views/views.gyp:views', |
143 'aura_shell', | 144 'aura_shell', |
144 ], | 145 ], |
145 'sources': [ | 146 'sources': [ |
146 'default_container_layout_manager_unittest.cc', | 147 'default_container_layout_manager_unittest.cc', |
147 'root_window_event_filter_unittest.cc', | 148 'root_window_event_filter_unittest.cc', |
(...skipping 14 matching lines...) Expand all Loading... |
162 'test/aura_shell_test_base.h', | 163 'test/aura_shell_test_base.h', |
163 'toplevel_layout_manager_unittest.cc', | 164 'toplevel_layout_manager_unittest.cc', |
164 'toplevel_window_event_filter_unittest.cc', | 165 'toplevel_window_event_filter_unittest.cc', |
165 'workspace_controller_unittest.cc', | 166 'workspace_controller_unittest.cc', |
166 'workspace/workspace_manager_unittest.cc', | 167 'workspace/workspace_manager_unittest.cc', |
167 | 168 |
168 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 169 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
169 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 170 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
170 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 171 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
171 ], | 172 ], |
172 'conditions': [ | |
173 ['use_webkit_compositor==1', { | |
174 'dependencies': [ | |
175 '../gfx/compositor/compositor.gyp:compositor', | |
176 ], | |
177 }, { # use_webkit_compositor!=1 | |
178 'dependencies': [ | |
179 '../gfx/compositor/compositor.gyp:test_compositor', | |
180 ], | |
181 }], | |
182 ], | |
183 }, | 173 }, |
184 { | 174 { |
185 'target_name': 'aura_shell_exe', | 175 'target_name': 'aura_shell_exe', |
186 'type': 'executable', | 176 'type': 'executable', |
187 'dependencies': [ | 177 'dependencies': [ |
188 '../../base/base.gyp:base', | 178 '../../base/base.gyp:base', |
189 '../../base/base.gyp:base_i18n', | 179 '../../base/base.gyp:base_i18n', |
190 '../../chrome/chrome_resources.gyp:packed_resources', | 180 '../../chrome/chrome_resources.gyp:packed_resources', |
191 '../../skia/skia.gyp:skia', | 181 '../../skia/skia.gyp:skia', |
192 '../../third_party/icu/icu.gyp:icui18n', | 182 '../../third_party/icu/icu.gyp:icui18n', |
(...skipping 19 matching lines...) Expand all Loading... |
212 'examples/widgets.cc', | 202 'examples/widgets.cc', |
213 'examples/window_type_launcher.cc', | 203 'examples/window_type_launcher.cc', |
214 'examples/window_type_launcher.h', | 204 'examples/window_type_launcher.h', |
215 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 205 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
216 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 206 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
217 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 207 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
218 ], | 208 ], |
219 }, | 209 }, |
220 ], | 210 ], |
221 } | 211 } |
OLD | NEW |