| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 'type': 'shared_library', | 280 'type': 'shared_library', |
| 281 'dependencies': [ | 281 'dependencies': [ |
| 282 '../base/base.gyp:base', | 282 '../base/base.gyp:base', |
| 283 '../ui/gfx/gfx.gyp:gfx_geometry', | 283 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 284 '../ui/gl/gl.gyp:gl', | 284 '../ui/gl/gl.gyp:gl', |
| 285 'mojo_application', | 285 'mojo_application', |
| 286 'mojo_cpp_bindings', | 286 'mojo_cpp_bindings', |
| 287 'mojo_environment_chromium', | 287 'mojo_environment_chromium', |
| 288 'mojo_geometry_bindings', | 288 'mojo_geometry_bindings', |
| 289 'mojo_gles2', | 289 'mojo_gles2', |
| 290 'mojo_navigation_bindings', |
| 290 'mojo_view_manager_lib', | 291 'mojo_view_manager_lib', |
| 291 'mojo_window_manager_bindings', | 292 'mojo_window_manager_bindings', |
| 292 'mojo_system_impl', | 293 'mojo_system_impl', |
| 293 'mojo_utility', | 294 'mojo_utility', |
| 294 ], | 295 ], |
| 295 'sources': [ | 296 'sources': [ |
| 296 'examples/window_manager/window_manager.cc', | 297 'examples/window_manager/window_manager.cc', |
| 297 'public/cpp/application/lib/mojo_main_chromium.cc', | 298 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 298 ], | 299 ], |
| 299 }, | 300 }, |
| 300 { | 301 { |
| 301 'target_name': 'mojo_embedded_app', | 302 'target_name': 'mojo_embedded_app', |
| 302 'type': 'shared_library', | 303 'type': 'shared_library', |
| 303 'dependencies': [ | 304 'dependencies': [ |
| 304 '../base/base.gyp:base', | 305 '../base/base.gyp:base', |
| 305 '../ui/gfx/gfx.gyp:gfx_geometry', | 306 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 306 '../ui/gl/gl.gyp:gl', | 307 '../ui/gl/gl.gyp:gl', |
| 307 'mojo_application', | 308 'mojo_application', |
| 308 'mojo_cpp_bindings', | 309 'mojo_cpp_bindings', |
| 309 'mojo_environment_chromium', | 310 'mojo_environment_chromium', |
| 310 'mojo_geometry_bindings', | 311 'mojo_geometry_bindings', |
| 311 'mojo_gles2', | 312 'mojo_gles2', |
| 313 'mojo_navigation_bindings', |
| 312 'mojo_view_manager_lib', | 314 'mojo_view_manager_lib', |
| 313 'mojo_window_manager_bindings', | 315 'mojo_window_manager_bindings', |
| 314 'mojo_system_impl', | 316 'mojo_system_impl', |
| 315 'mojo_utility', | 317 'mojo_utility', |
| 316 ], | 318 ], |
| 317 'sources': [ | 319 'sources': [ |
| 318 'examples/embedded_app/embedded_app.cc', | 320 'examples/embedded_app/embedded_app.cc', |
| 319 'public/cpp/application/lib/mojo_main_chromium.cc', | 321 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 320 ], | 322 ], |
| 321 }, | 323 }, |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 ], | 361 ], |
| 360 'sources': [ | 362 'sources': [ |
| 361 'examples/dbus_echo/dbus_echo_app.cc', | 363 'examples/dbus_echo/dbus_echo_app.cc', |
| 362 'public/cpp/application/lib/mojo_main_standalone.cc', | 364 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 363 ], | 365 ], |
| 364 }, | 366 }, |
| 365 ], | 367 ], |
| 366 }], | 368 }], |
| 367 ], | 369 ], |
| 368 } | 370 } |
| OLD | NEW |