| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 { | 441 { |
| 442 'target_name': 'mojo_spy', | 442 'target_name': 'mojo_spy', |
| 443 'type': 'static_library', | 443 'type': 'static_library', |
| 444 'dependencies': [ | 444 'dependencies': [ |
| 445 '../base/base.gyp:base', | 445 '../base/base.gyp:base', |
| 446 '../base/base.gyp:base_static', | 446 '../base/base.gyp:base_static', |
| 447 '../net/net.gyp:http_server', | 447 '../net/net.gyp:http_server', |
| 448 '../url/url.gyp:url_lib', | 448 '../url/url.gyp:url_lib', |
| 449 'mojo_service_manager', | 449 'mojo_service_manager', |
| 450 ], | 450 ], |
| 451 'variables': { |
| 452 'mojom_base_output_dir': 'mojo', |
| 453 }, |
| 454 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 451 'sources': [ | 455 'sources': [ |
| 456 'spy/public/spy.mojom', |
| 452 'spy/spy.cc', | 457 'spy/spy.cc', |
| 453 'spy/spy.h', | 458 'spy/spy.h', |
| 459 'spy/spy_server_impl.h', |
| 460 'spy/spy_server_impl.cc', |
| 454 'spy/websocket_server.cc', | 461 'spy/websocket_server.cc', |
| 455 'spy/websocket_server.h', | 462 'spy/websocket_server.h', |
| 456 ], | 463 ], |
| 457 }, | 464 }, |
| 458 { | 465 { |
| 459 'target_name': 'mojo_geometry_lib', | 466 'target_name': 'mojo_geometry_lib', |
| 460 'type': '<(component)', | 467 'type': '<(component)', |
| 461 'defines': [ | 468 'defines': [ |
| 462 'MOJO_GEOMETRY_IMPLEMENTATION', | 469 'MOJO_GEOMETRY_IMPLEMENTATION', |
| 463 ], | 470 ], |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 'aura/screen_mojo.cc', | 907 'aura/screen_mojo.cc', |
| 901 'aura/screen_mojo.h', | 908 'aura/screen_mojo.h', |
| 902 'aura/window_tree_host_mojo.cc', | 909 'aura/window_tree_host_mojo.cc', |
| 903 'aura/window_tree_host_mojo.h', | 910 'aura/window_tree_host_mojo.h', |
| 904 ], | 911 ], |
| 905 }, | 912 }, |
| 906 ], | 913 ], |
| 907 }], | 914 }], |
| 908 ], | 915 ], |
| 909 } | 916 } |
| OLD | NEW |