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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 'mojo_service_manager', | 449 'mojo_service_manager', |
450 ], | 450 ], |
451 'sources': [ | 451 'sources': [ |
452 'spy/spy.cc', | 452 'spy/spy.cc', |
453 'spy/spy.h', | 453 'spy/spy.h', |
454 'spy/websocket_server.cc', | 454 'spy/websocket_server.cc', |
455 'spy/websocket_server.h', | 455 'spy/websocket_server.h', |
456 ], | 456 ], |
457 }, | 457 }, |
458 { | 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 { |
459 'target_name': 'mojo_shell_lib', | 476 'target_name': 'mojo_shell_lib', |
460 'type': 'static_library', | 477 'type': 'static_library', |
461 'dependencies': [ | 478 'dependencies': [ |
462 '../base/base.gyp:base', | 479 '../base/base.gyp:base', |
463 '../base/base.gyp:base_static', | 480 '../base/base.gyp:base_static', |
464 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 481 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
465 '../net/net.gyp:net', | 482 '../net/net.gyp:net', |
466 '../url/url.gyp:url_lib', | 483 '../url/url.gyp:url_lib', |
467 'mojo_external_service_bindings', | 484 'mojo_external_service_bindings', |
468 'mojo_gles2_impl', | 485 'mojo_gles2_impl', |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
883 'aura/screen_mojo.cc', | 900 'aura/screen_mojo.cc', |
884 'aura/screen_mojo.h', | 901 'aura/screen_mojo.h', |
885 'aura/window_tree_host_mojo.cc', | 902 'aura/window_tree_host_mojo.cc', |
886 'aura/window_tree_host_mojo.h', | 903 'aura/window_tree_host_mojo.h', |
887 ], | 904 ], |
888 }, | 905 }, |
889 ], | 906 ], |
890 }], | 907 }], |
891 ], | 908 ], |
892 } | 909 } |
OLD | NEW |