| 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': [ |
| 11 # TODO(darin): we should not be linking against these libraries! | 11 '../ui/events/events.gyp:events', |
| 12 '../ui/gfx/gfx.gyp:gfx', | |
| 13 '../ui/gfx/gfx.gyp:gfx_geometry', | 12 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 14 '../ui/gl/gl.gyp:gl', | |
| 15 'mojo_bindings', | 13 'mojo_bindings', |
| 16 'mojo_environment_standalone', | 14 'mojo_environment_standalone', |
| 17 'mojo_gles2', | 15 'mojo_gles2', |
| 18 'mojo_native_viewport_bindings', | 16 'mojo_native_viewport_bindings', |
| 19 'mojo_shell_client', | 17 'mojo_shell_client', |
| 20 'mojo_system', | 18 'mojo_system', |
| 21 'mojo_utility', | 19 'mojo_utility', |
| 22 ], | 20 ], |
| 23 'sources': [ | 21 'sources': [ |
| 24 'examples/sample_app/gles2_client_impl.cc', | 22 'examples/sample_app/gles2_client_impl.cc', |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 'target_name': 'package_mojo_view_manager', | 313 'target_name': 'package_mojo_view_manager', |
| 316 'variables': { | 314 'variables': { |
| 317 'app_name': 'mojo_view_manager', | 315 'app_name': 'mojo_view_manager', |
| 318 }, | 316 }, |
| 319 'includes': [ 'build/package_app.gypi' ], | 317 'includes': [ 'build/package_app.gypi' ], |
| 320 }, | 318 }, |
| 321 ], | 319 ], |
| 322 }], | 320 }], |
| 323 ], | 321 ], |
| 324 } | 322 } |
| OLD | NEW |