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_echo_client', | 8 'target_name': 'mojo_echo_client', |
9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 ], | 434 ], |
435 'sources': [ | 435 'sources': [ |
436 'examples/surfaces_app/child_app.cc', | 436 'examples/surfaces_app/child_app.cc', |
437 'examples/surfaces_app/child_impl.cc', | 437 'examples/surfaces_app/child_impl.cc', |
438 'examples/surfaces_app/child_impl.h', | 438 'examples/surfaces_app/child_impl.h', |
439 'examples/surfaces_app/surfaces_util.cc', | 439 'examples/surfaces_app/surfaces_util.cc', |
440 'examples/surfaces_app/surfaces_util.h', | 440 'examples/surfaces_app/surfaces_util.h', |
441 'public/cpp/application/lib/mojo_main_chromium.cc', | 441 'public/cpp/application/lib/mojo_main_chromium.cc', |
442 ], | 442 ], |
443 }, | 443 }, |
| 444 { |
| 445 'target_name': 'mojo_surfaces_child_gl_app', |
| 446 'type': 'loadable_module', |
| 447 'dependencies': [ |
| 448 '../base/base.gyp:base', |
| 449 '../cc/cc.gyp:cc', |
| 450 '../cc/cc.gyp:cc_surfaces', |
| 451 '../skia/skia.gyp:skia', |
| 452 '../ui/gfx/gfx.gyp:gfx', |
| 453 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 454 'mojo_base.gyp:mojo_application_chromium', |
| 455 'mojo_base.gyp:mojo_common_lib', |
| 456 'mojo_base.gyp:mojo_environment_chromium', |
| 457 'mojo_geometry_bindings', |
| 458 'mojo_geometry_lib', |
| 459 'mojo_surfaces_app_bindings', |
| 460 'mojo_surfaces_bindings', |
| 461 'mojo_surfaces_lib', |
| 462 '<(mojo_gles2_for_loadable_module)', |
| 463 '<(mojo_system_for_loadable_module)', |
| 464 ], |
| 465 'sources': [ |
| 466 'examples/surfaces_app/child_gl_app.cc', |
| 467 'examples/surfaces_app/child_gl_impl.cc', |
| 468 'examples/surfaces_app/child_gl_impl.h', |
| 469 'examples/surfaces_app/surfaces_util.cc', |
| 470 'examples/surfaces_app/surfaces_util.h', |
| 471 'examples/sample_app/spinning_cube.cc', |
| 472 'examples/sample_app/spinning_cube.h', |
| 473 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 474 ], |
| 475 } |
444 ], | 476 ], |
445 'conditions': [ | 477 'conditions': [ |
446 ['use_aura==1', { | 478 ['use_aura==1', { |
447 'targets': [ | 479 'targets': [ |
448 { | 480 { |
449 'target_name': 'mojo_aura_demo', | 481 'target_name': 'mojo_aura_demo', |
450 'type': 'loadable_module', | 482 'type': 'loadable_module', |
451 'dependencies': [ | 483 'dependencies': [ |
452 '../base/base.gyp:base', | 484 '../base/base.gyp:base', |
453 '../cc/cc.gyp:cc', | 485 '../cc/cc.gyp:cc', |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
842 ], | 874 ], |
843 'sources': [ | 875 'sources': [ |
844 'examples/dbus_echo/dbus_echo_app.cc', | 876 'examples/dbus_echo/dbus_echo_app.cc', |
845 'public/cpp/application/lib/mojo_main_standalone.cc', | 877 'public/cpp/application/lib/mojo_main_standalone.cc', |
846 ], | 878 ], |
847 }, | 879 }, |
848 ], | 880 ], |
849 }], | 881 }], |
850 ], | 882 ], |
851 } | 883 } |
OLD | NEW |