| 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' ], | |
| 455 'sources': [ | 451 'sources': [ |
| 456 'spy/public/spy.mojom', | |
| 457 'spy/spy.cc', | 452 'spy/spy.cc', |
| 458 'spy/spy.h', | 453 'spy/spy.h', |
| 459 'spy/spy_server_impl.h', | |
| 460 'spy/spy_server_impl.cc', | |
| 461 'spy/websocket_server.cc', | 454 'spy/websocket_server.cc', |
| 462 'spy/websocket_server.h', | 455 'spy/websocket_server.h', |
| 463 ], | 456 ], |
| 464 }, | 457 }, |
| 465 { | 458 { |
| 466 'target_name': 'mojo_geometry_lib', | 459 'target_name': 'mojo_geometry_lib', |
| 467 'type': '<(component)', | 460 'type': '<(component)', |
| 468 'defines': [ | 461 'defines': [ |
| 469 'MOJO_GEOMETRY_IMPLEMENTATION', | 462 'MOJO_GEOMETRY_IMPLEMENTATION', |
| 470 ], | 463 ], |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 'aura/screen_mojo.cc', | 900 'aura/screen_mojo.cc', |
| 908 'aura/screen_mojo.h', | 901 'aura/screen_mojo.h', |
| 909 'aura/window_tree_host_mojo.cc', | 902 'aura/window_tree_host_mojo.cc', |
| 910 'aura/window_tree_host_mojo.h', | 903 'aura/window_tree_host_mojo.h', |
| 911 ], | 904 ], |
| 912 }, | 905 }, |
| 913 ], | 906 ], |
| 914 }], | 907 }], |
| 915 ], | 908 ], |
| 916 } | 909 } |
| OLD | NEW |