| 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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 'target_name': 'mojo_spy', | 466 'target_name': 'mojo_spy', |
| 467 'type': 'static_library', | 467 'type': 'static_library', |
| 468 'dependencies': [ | 468 'dependencies': [ |
| 469 '../base/base.gyp:base', | 469 '../base/base.gyp:base', |
| 470 '../base/base.gyp:base_static', | 470 '../base/base.gyp:base_static', |
| 471 '../net/net.gyp:http_server', | 471 '../net/net.gyp:http_server', |
| 472 '../url/url.gyp:url_lib', | 472 '../url/url.gyp:url_lib', |
| 473 'mojo_service_manager', | 473 'mojo_service_manager', |
| 474 ], | 474 ], |
| 475 'sources': [ | 475 'sources': [ |
| 476 'spy/common.h', |
| 476 'spy/spy.cc', | 477 'spy/spy.cc', |
| 477 'spy/spy.h', | 478 'spy/spy.h', |
| 478 'spy/websocket_server.cc', | 479 'spy/websocket_server.cc', |
| 479 'spy/websocket_server.h', | 480 'spy/websocket_server.h', |
| 480 ], | 481 ], |
| 481 }, | 482 }, |
| 482 { | 483 { |
| 483 'target_name': 'mojo_shell_lib', | 484 'target_name': 'mojo_shell_lib', |
| 484 'type': 'static_library', | 485 'type': 'static_library', |
| 485 'dependencies': [ | 486 'dependencies': [ |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 'views/views_init_internal.h', | 992 'views/views_init_internal.h', |
| 992 ], | 993 ], |
| 993 'defines': [ | 994 'defines': [ |
| 994 'MOJO_VIEWS_IMPLEMENTATION', | 995 'MOJO_VIEWS_IMPLEMENTATION', |
| 995 ], | 996 ], |
| 996 }, | 997 }, |
| 997 ], | 998 ], |
| 998 }], | 999 }], |
| 999 ], | 1000 ], |
| 1000 } | 1001 } |
| OLD | NEW |