| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 }, | 278 }, |
| 279 { | 279 { |
| 280 'target_name': 'mojo_sample_view_manager_app', | 280 'target_name': 'mojo_sample_view_manager_app', |
| 281 'type': 'shared_library', | 281 'type': 'shared_library', |
| 282 'dependencies': [ | 282 'dependencies': [ |
| 283 '../base/base.gyp:base', | 283 '../base/base.gyp:base', |
| 284 '../ui/gfx/gfx.gyp:gfx', | 284 '../ui/gfx/gfx.gyp:gfx', |
| 285 '../ui/gfx/gfx.gyp:gfx_geometry', | 285 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 286 '../ui/gl/gl.gyp:gl', | 286 '../ui/gl/gl.gyp:gl', |
| 287 'mojo_cpp_bindings', | 287 'mojo_cpp_bindings', |
| 288 'mojo_environment_standalone', | 288 'mojo_environment_chromium', |
| 289 'mojo_gles2', | 289 'mojo_gles2', |
| 290 'mojo_view_manager_bindings', | 290 'mojo_view_manager_lib', |
| 291 'mojo_shell_client', | 291 'mojo_shell_client', |
| 292 'mojo_system', | 292 'mojo_system_impl', |
| 293 'mojo_utility', | 293 'mojo_utility', |
| 294 ], | 294 ], |
| 295 'sources': [ | 295 'sources': [ |
| 296 'examples/sample_view_manager_app/sample_view_manager_app.cc', | 296 'examples/sample_view_manager_app/sample_view_manager_app.cc', |
| 297 ], | 297 ], |
| 298 }, | 298 }, |
| 299 ], | 299 ], |
| 300 }], | 300 }], |
| 301 ['OS=="linux"', { | 301 ['OS=="linux"', { |
| 302 'targets': [ | 302 'targets': [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 313 'mojo_utility', | 313 'mojo_utility', |
| 314 ], | 314 ], |
| 315 'sources': [ | 315 'sources': [ |
| 316 'examples/dbus_echo/dbus_echo_app.cc', | 316 'examples/dbus_echo/dbus_echo_app.cc', |
| 317 ], | 317 ], |
| 318 }, | 318 }, |
| 319 ], | 319 ], |
| 320 }], | 320 }], |
| 321 ], | 321 ], |
| 322 } | 322 } |
| OLD | NEW |