OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'mojo_sample_app', | 8 'target_name': 'mojo_sample_app', |
9 'type': 'shared_library', | 9 'type': 'shared_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 }, | 163 }, |
164 ], | 164 ], |
165 'conditions': [ | 165 'conditions': [ |
166 ['use_aura==1', { | 166 ['use_aura==1', { |
167 'targets': [ | 167 'targets': [ |
168 { | 168 { |
169 'target_name': 'mojo_aura_demo', | 169 'target_name': 'mojo_aura_demo', |
170 'type': 'shared_library', | 170 'type': 'shared_library', |
171 'dependencies': [ | 171 'dependencies': [ |
172 '../base/base.gyp:base', | 172 '../base/base.gyp:base', |
| 173 '../cc/cc.gyp:cc', |
173 '../ui/aura/aura.gyp:aura', | 174 '../ui/aura/aura.gyp:aura', |
174 '../ui/base/ui_base.gyp:ui_base', | 175 '../ui/base/ui_base.gyp:ui_base', |
| 176 '../ui/compositor/compositor.gyp:compositor', |
175 '../ui/gfx/gfx.gyp:gfx', | 177 '../ui/gfx/gfx.gyp:gfx', |
176 '../ui/gfx/gfx.gyp:gfx_geometry', | 178 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 179 'mojo_application', |
177 'mojo_aura_support', | 180 'mojo_aura_support', |
178 'mojo_cc_support', | |
179 'mojo_common_lib', | 181 'mojo_common_lib', |
180 'mojo_environment_chromium', | 182 'mojo_environment_chromium', |
181 'mojo_geometry_bindings', | 183 'mojo_geometry_bindings', |
182 'mojo_geometry_lib', | 184 'mojo_geometry_lib', |
183 'mojo_gles2', | 185 'mojo_system_impl', |
184 'mojo_main_chromium', | 186 'mojo_view_manager_bindings', |
185 'mojo_system_impl' | |
186 ], | 187 ], |
187 'sources': [ | 188 'sources': [ |
| 189 'examples/aura_demo/context_factory_view_manager.cc', |
| 190 'examples/aura_demo/context_factory_view_manager.h', |
| 191 'examples/aura_demo/window_tree_host_view_manager.cc', |
| 192 'examples/aura_demo/window_tree_host_view_manager.h', |
188 'examples/aura_demo/aura_demo.cc', | 193 'examples/aura_demo/aura_demo.cc', |
| 194 'public/cpp/application/lib/mojo_main_chromium.cc', |
189 ], | 195 ], |
190 }, | 196 }, |
191 { | 197 { |
| 198 'target_name': 'mojo_aura_demo_init', |
| 199 'type': 'shared_library', |
| 200 'dependencies': [ |
| 201 '../base/base.gyp:base', |
| 202 'mojo_application', |
| 203 'mojo_environment_chromium', |
| 204 'mojo_system_impl', |
| 205 'mojo_view_manager_bindings', |
| 206 ], |
| 207 'sources': [ |
| 208 'examples/aura_demo/view_manager_init.cc', |
| 209 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 210 ], |
| 211 }, |
| 212 { |
192 'target_name': 'package_mojo_aura_demo', | 213 'target_name': 'package_mojo_aura_demo', |
193 'variables': { | 214 'variables': { |
194 'app_name': 'mojo_aura_demo', | 215 'app_name': 'mojo_aura_demo', |
195 }, | 216 }, |
196 'includes': [ 'build/package_app.gypi' ], | 217 'includes': [ 'build/package_app.gypi' ], |
197 }, | 218 }, |
198 { | 219 { |
199 'target_name': 'mojo_launcher_bindings', | 220 'target_name': 'mojo_launcher_bindings', |
200 'type': 'static_library', | 221 'type': 'static_library', |
201 'sources': [ | 222 'sources': [ |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 'mojo_utility', | 305 'mojo_utility', |
285 ], | 306 ], |
286 'sources': [ | 307 'sources': [ |
287 'examples/dbus_echo/dbus_echo_app.cc', | 308 'examples/dbus_echo/dbus_echo_app.cc', |
288 ], | 309 ], |
289 }, | 310 }, |
290 ], | 311 ], |
291 }], | 312 }], |
292 ], | 313 ], |
293 } | 314 } |
OLD | NEW |