| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 'targets': [ | 26 'targets': [ |
| 27 { | 27 { |
| 28 'target_name': 'mojo', | 28 'target_name': 'mojo', |
| 29 'type': 'none', | 29 'type': 'none', |
| 30 'dependencies': [ | 30 'dependencies': [ |
| 31 'mojo_apps_js_unittests', | 31 'mojo_apps_js_unittests', |
| 32 'mojo_compositor_app', | 32 'mojo_compositor_app', |
| 33 'mojo_common_lib', | 33 'mojo_common_lib', |
| 34 'mojo_common_unittests', | 34 'mojo_common_unittests', |
| 35 'mojo_cpp_bindings', | 35 'mojo_cpp_bindings', |
| 36 'mojo_geometry_lib', |
| 36 'mojo_js', | 37 'mojo_js', |
| 37 'mojo_js_bindings', | 38 'mojo_js_bindings', |
| 38 'mojo_js_unittests', | 39 'mojo_js_unittests', |
| 39 'mojo_message_generator', | 40 'mojo_message_generator', |
| 40 'mojo_native_viewport_service', | 41 'mojo_native_viewport_service', |
| 41 'mojo_pepper_container_app', | 42 'mojo_pepper_container_app', |
| 42 'mojo_public_test_utils', | 43 'mojo_public_test_utils', |
| 43 'mojo_public_bindings_unittests', | 44 'mojo_public_bindings_unittests', |
| 44 'mojo_public_environment_unittests', | 45 'mojo_public_environment_unittests', |
| 45 'mojo_public_system_perftests', | 46 'mojo_public_system_perftests', |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 'mojo_service_manager', | 449 'mojo_service_manager', |
| 449 ], | 450 ], |
| 450 'sources': [ | 451 'sources': [ |
| 451 'spy/spy.cc', | 452 'spy/spy.cc', |
| 452 'spy/spy.h', | 453 'spy/spy.h', |
| 453 'spy/websocket_server.cc', | 454 'spy/websocket_server.cc', |
| 454 'spy/websocket_server.h', | 455 'spy/websocket_server.h', |
| 455 ], | 456 ], |
| 456 }, | 457 }, |
| 457 { | 458 { |
| 459 'target_name': 'mojo_geometry_lib', |
| 460 'type': '<(component)', |
| 461 'defines': [ |
| 462 'MOJO_GEOMETRY_IMPLEMENTATION', |
| 463 ], |
| 464 'dependencies': [ |
| 465 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 466 'mojo_environment_chromium', |
| 467 'mojo_geometry_bindings', |
| 468 'mojo_system_impl', |
| 469 ], |
| 470 'sources': [ |
| 471 'geometry/geometry_type_converters.cc', |
| 472 'geometry/geometry_type_converters.h', |
| 473 ], |
| 474 }, |
| 475 { |
| 458 'target_name': 'mojo_shell_lib', | 476 'target_name': 'mojo_shell_lib', |
| 459 'type': 'static_library', | 477 'type': 'static_library', |
| 460 'dependencies': [ | 478 'dependencies': [ |
| 461 '../base/base.gyp:base', | 479 '../base/base.gyp:base', |
| 462 '../base/base.gyp:base_static', | 480 '../base/base.gyp:base_static', |
| 463 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 481 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 464 '../net/net.gyp:net', | 482 '../net/net.gyp:net', |
| 465 '../url/url.gyp:url_lib', | 483 '../url/url.gyp:url_lib', |
| 466 'mojo_external_service_bindings', | 484 'mojo_external_service_bindings', |
| 467 'mojo_gles2_impl', | 485 'mojo_gles2_impl', |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 'aura/screen_mojo.cc', | 900 'aura/screen_mojo.cc', |
| 883 'aura/screen_mojo.h', | 901 'aura/screen_mojo.h', |
| 884 'aura/window_tree_host_mojo.cc', | 902 'aura/window_tree_host_mojo.cc', |
| 885 'aura/window_tree_host_mojo.h', | 903 'aura/window_tree_host_mojo.h', |
| 886 ], | 904 ], |
| 887 }, | 905 }, |
| 888 ], | 906 ], |
| 889 }], | 907 }], |
| 890 ], | 908 ], |
| 891 } | 909 } |
| OLD | NEW |