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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 399 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
400 'mojo_shell_bindings', | 400 'mojo_shell_bindings', |
401 ], | 401 ], |
402 }, | 402 }, |
403 { | 403 { |
404 'target_name': 'mojo_spy', | 404 'target_name': 'mojo_spy', |
405 'type': 'static_library', | 405 'type': 'static_library', |
406 'dependencies': [ | 406 'dependencies': [ |
407 '../base/base.gyp:base', | 407 '../base/base.gyp:base', |
408 '../base/base.gyp:base_static', | 408 '../base/base.gyp:base_static', |
| 409 '../net/net.gyp:http_server', |
409 '../url/url.gyp:url_lib', | 410 '../url/url.gyp:url_lib', |
410 'mojo_service_manager', | 411 'mojo_service_manager', |
411 ], | 412 ], |
412 'sources': [ | 413 'sources': [ |
413 'spy/spy.cc', | 414 'spy/spy.cc', |
414 'spy/spy.h', | 415 'spy/spy.h', |
| 416 'spy/websocket_server.cc', |
| 417 'spy/websocket_server.h', |
415 ], | 418 ], |
416 }, | 419 }, |
417 { | 420 { |
418 'target_name': 'mojo_shell_lib', | 421 'target_name': 'mojo_shell_lib', |
419 'type': 'static_library', | 422 'type': 'static_library', |
420 'dependencies': [ | 423 'dependencies': [ |
421 '../base/base.gyp:base', | 424 '../base/base.gyp:base', |
422 '../base/base.gyp:base_static', | 425 '../base/base.gyp:base_static', |
423 '../net/net.gyp:net', | 426 '../net/net.gyp:net', |
424 '../url/url.gyp:url_lib', | 427 '../url/url.gyp:url_lib', |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 'mojo_js_unittests.isolate', | 727 'mojo_js_unittests.isolate', |
725 ], | 728 ], |
726 'sources': [ | 729 'sources': [ |
727 'mojo_js_unittests.isolate', | 730 'mojo_js_unittests.isolate', |
728 ], | 731 ], |
729 }, | 732 }, |
730 ], | 733 ], |
731 }], | 734 }], |
732 ], | 735 ], |
733 } | 736 } |
OLD | NEW |