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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 'target_name': 'mojo_spy', | 469 'target_name': 'mojo_spy', |
470 'type': 'static_library', | 470 'type': 'static_library', |
471 'dependencies': [ | 471 'dependencies': [ |
472 '../base/base.gyp:base', | 472 '../base/base.gyp:base', |
473 '../base/base.gyp:base_static', | 473 '../base/base.gyp:base_static', |
474 '../net/net.gyp:http_server', | 474 '../net/net.gyp:http_server', |
475 '../url/url.gyp:url_lib', | 475 '../url/url.gyp:url_lib', |
476 'mojo_service_manager', | 476 'mojo_service_manager', |
477 ], | 477 ], |
478 'sources': [ | 478 'sources': [ |
| 479 'spy/common.h', |
479 'spy/spy.cc', | 480 'spy/spy.cc', |
480 'spy/spy.h', | 481 'spy/spy.h', |
481 'spy/websocket_server.cc', | 482 'spy/websocket_server.cc', |
482 'spy/websocket_server.h', | 483 'spy/websocket_server.h', |
483 ], | 484 ], |
484 }, | 485 }, |
485 { | 486 { |
486 'target_name': 'mojo_shell_lib', | 487 'target_name': 'mojo_shell_lib', |
487 'type': 'static_library', | 488 'type': 'static_library', |
488 'dependencies': [ | 489 'dependencies': [ |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 'views/views_init_internal.h', | 997 'views/views_init_internal.h', |
997 ], | 998 ], |
998 'defines': [ | 999 'defines': [ |
999 'MOJO_VIEWS_IMPLEMENTATION', | 1000 'MOJO_VIEWS_IMPLEMENTATION', |
1000 ], | 1001 ], |
1001 }, | 1002 }, |
1002 ], | 1003 ], |
1003 }], | 1004 }], |
1004 ], | 1005 ], |
1005 } | 1006 } |
OLD | NEW |