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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 'mojo_view_manager_bindings', | 305 'mojo_view_manager_bindings', |
306 'mojo_system_impl', | 306 'mojo_system_impl', |
307 'mojo_utility', | 307 'mojo_utility', |
308 ], | 308 ], |
309 'sources': [ | 309 'sources': [ |
310 'examples/demo_launcher/demo_launcher.cc', | 310 'examples/demo_launcher/demo_launcher.cc', |
311 'public/cpp/application/lib/mojo_main_chromium.cc', | 311 'public/cpp/application/lib/mojo_main_chromium.cc', |
312 ], | 312 ], |
313 }, | 313 }, |
314 { | 314 { |
| 315 'target_name': 'mojo_window_manager_bindings', |
| 316 'type': 'static_library', |
| 317 'sources': [ |
| 318 'examples/window_manager/window_manager.mojom', |
| 319 ], |
| 320 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 321 'export_dependent_settings': [ |
| 322 'mojo_cpp_bindings', |
| 323 ], |
| 324 'dependencies': [ |
| 325 'mojo_cpp_bindings', |
| 326 ], |
| 327 }, |
| 328 { |
315 'target_name': 'mojo_window_manager', | 329 'target_name': 'mojo_window_manager', |
316 'type': 'shared_library', | 330 'type': 'shared_library', |
317 'dependencies': [ | 331 'dependencies': [ |
318 '../base/base.gyp:base', | 332 '../base/base.gyp:base', |
319 '../ui/gfx/gfx.gyp:gfx_geometry', | 333 '../ui/gfx/gfx.gyp:gfx_geometry', |
320 '../ui/gl/gl.gyp:gl', | 334 '../ui/gl/gl.gyp:gl', |
321 'mojo_application', | 335 'mojo_application', |
322 'mojo_cpp_bindings', | 336 'mojo_cpp_bindings', |
323 'mojo_environment_chromium', | 337 'mojo_environment_chromium', |
324 'mojo_geometry_bindings', | 338 'mojo_geometry_bindings', |
325 'mojo_gles2', | 339 'mojo_gles2', |
326 'mojo_view_manager_lib', | 340 'mojo_view_manager_lib', |
| 341 'mojo_window_manager_bindings', |
327 'mojo_system_impl', | 342 'mojo_system_impl', |
328 'mojo_utility', | 343 'mojo_utility', |
329 ], | 344 ], |
330 'sources': [ | 345 'sources': [ |
331 'examples/window_manager/window_manager.cc', | 346 'examples/window_manager/window_manager.cc', |
332 'public/cpp/application/lib/mojo_main_chromium.cc', | 347 'public/cpp/application/lib/mojo_main_chromium.cc', |
333 ], | 348 ], |
334 }, | 349 }, |
335 { | 350 { |
336 'target_name': 'mojo_embedded_app', | 351 'target_name': 'mojo_embedded_app', |
337 'type': 'shared_library', | 352 'type': 'shared_library', |
338 'dependencies': [ | 353 'dependencies': [ |
339 '../base/base.gyp:base', | 354 '../base/base.gyp:base', |
340 '../ui/gfx/gfx.gyp:gfx_geometry', | 355 '../ui/gfx/gfx.gyp:gfx_geometry', |
341 '../ui/gl/gl.gyp:gl', | 356 '../ui/gl/gl.gyp:gl', |
342 'mojo_application', | 357 'mojo_application', |
343 'mojo_cpp_bindings', | 358 'mojo_cpp_bindings', |
344 'mojo_environment_chromium', | 359 'mojo_environment_chromium', |
345 'mojo_geometry_bindings', | 360 'mojo_geometry_bindings', |
346 'mojo_gles2', | 361 'mojo_gles2', |
347 'mojo_view_manager_lib', | 362 'mojo_view_manager_lib', |
| 363 'mojo_window_manager_bindings', |
348 'mojo_system_impl', | 364 'mojo_system_impl', |
349 'mojo_utility', | 365 'mojo_utility', |
350 ], | 366 ], |
351 'sources': [ | 367 'sources': [ |
352 'examples/embedded_app/embedded_app.cc', | 368 'examples/embedded_app/embedded_app.cc', |
353 'public/cpp/application/lib/mojo_main_chromium.cc', | 369 'public/cpp/application/lib/mojo_main_chromium.cc', |
354 ], | 370 ], |
355 }, | 371 }, |
356 ], | 372 ], |
357 }], | 373 }], |
(...skipping 12 matching lines...) Expand all Loading... |
370 'mojo_utility', | 386 'mojo_utility', |
371 ], | 387 ], |
372 'sources': [ | 388 'sources': [ |
373 'examples/dbus_echo/dbus_echo_app.cc', | 389 'examples/dbus_echo/dbus_echo_app.cc', |
374 ], | 390 ], |
375 }, | 391 }, |
376 ], | 392 ], |
377 }], | 393 }], |
378 ], | 394 ], |
379 } | 395 } |
OLD | NEW |