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', |
| 308 '../url/url.gyp:url_lib', |
307 'mojo_application', | 309 'mojo_application', |
308 'mojo_cpp_bindings', | 310 'mojo_cpp_bindings', |
309 'mojo_environment_chromium', | 311 'mojo_environment_chromium', |
310 'mojo_geometry_bindings', | 312 'mojo_geometry_bindings', |
311 'mojo_gles2', | 313 'mojo_gles2', |
| 314 'mojo_navigation_bindings', |
312 'mojo_view_manager_lib', | 315 'mojo_view_manager_lib', |
313 'mojo_window_manager_bindings', | 316 'mojo_window_manager_bindings', |
314 'mojo_system_impl', | 317 'mojo_system_impl', |
315 'mojo_utility', | 318 'mojo_utility', |
316 ], | 319 ], |
317 'sources': [ | 320 'sources': [ |
318 'examples/embedded_app/embedded_app.cc', | 321 'examples/embedded_app/embedded_app.cc', |
319 'public/cpp/application/lib/mojo_main_chromium.cc', | 322 'public/cpp/application/lib/mojo_main_chromium.cc', |
320 ], | 323 ], |
321 }, | 324 }, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 ], | 362 ], |
360 'sources': [ | 363 'sources': [ |
361 'examples/dbus_echo/dbus_echo_app.cc', | 364 'examples/dbus_echo/dbus_echo_app.cc', |
362 'public/cpp/application/lib/mojo_main_standalone.cc', | 365 'public/cpp/application/lib/mojo_main_standalone.cc', |
363 ], | 366 ], |
364 }, | 367 }, |
365 ], | 368 ], |
366 }], | 369 }], |
367 ], | 370 ], |
368 } | 371 } |
OLD | NEW |