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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 'target_name': 'mojo_spy', | 465 'target_name': 'mojo_spy', |
466 'type': 'static_library', | 466 'type': 'static_library', |
467 'dependencies': [ | 467 'dependencies': [ |
468 '../base/base.gyp:base', | 468 '../base/base.gyp:base', |
469 '../base/base.gyp:base_static', | 469 '../base/base.gyp:base_static', |
470 '../net/net.gyp:http_server', | 470 '../net/net.gyp:http_server', |
471 '../url/url.gyp:url_lib', | 471 '../url/url.gyp:url_lib', |
472 'mojo_service_manager', | 472 'mojo_service_manager', |
473 ], | 473 ], |
474 'sources': [ | 474 'sources': [ |
| 475 'spy/common.h', |
475 'spy/spy.cc', | 476 'spy/spy.cc', |
476 'spy/spy.h', | 477 'spy/spy.h', |
477 'spy/websocket_server.cc', | 478 'spy/websocket_server.cc', |
478 'spy/websocket_server.h', | 479 'spy/websocket_server.h', |
479 ], | 480 ], |
480 }, | 481 }, |
481 { | 482 { |
482 'target_name': 'mojo_shell_lib', | 483 'target_name': 'mojo_shell_lib', |
483 'type': 'static_library', | 484 'type': 'static_library', |
484 'dependencies': [ | 485 'dependencies': [ |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
983 'views/views_init_internal.h', | 984 'views/views_init_internal.h', |
984 ], | 985 ], |
985 'defines': [ | 986 'defines': [ |
986 'MOJO_VIEWS_IMPLEMENTATION', | 987 'MOJO_VIEWS_IMPLEMENTATION', |
987 ], | 988 ], |
988 }, | 989 }, |
989 ], | 990 ], |
990 }], | 991 }], |
991 ], | 992 ], |
992 } | 993 } |
OLD | NEW |