| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 { | 501 { |
| 502 'target_name': 'mojo_spy', | 502 'target_name': 'mojo_spy', |
| 503 'type': 'static_library', | 503 'type': 'static_library', |
| 504 'dependencies': [ | 504 'dependencies': [ |
| 505 '../base/base.gyp:base', | 505 '../base/base.gyp:base', |
| 506 '../base/base.gyp:base_static', | 506 '../base/base.gyp:base_static', |
| 507 '../net/net.gyp:http_server', | 507 '../net/net.gyp:http_server', |
| 508 '../url/url.gyp:url_lib', | 508 '../url/url.gyp:url_lib', |
| 509 'mojo_service_manager', | 509 'mojo_service_manager', |
| 510 ], | 510 ], |
| 511 'variables': { |
| 512 'mojom_base_output_dir': 'mojo', |
| 513 }, |
| 514 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 511 'sources': [ | 515 'sources': [ |
| 516 'spy/public/spy.mojom', |
| 512 'spy/spy.cc', | 517 'spy/spy.cc', |
| 513 'spy/spy.h', | 518 'spy/spy.h', |
| 519 'spy/spy_server_impl.h', |
| 520 'spy/spy_server_impl.cc', |
| 514 'spy/websocket_server.cc', | 521 'spy/websocket_server.cc', |
| 515 'spy/websocket_server.h', | 522 'spy/websocket_server.h', |
| 516 ], | 523 ], |
| 517 }, | 524 }, |
| 518 { | 525 { |
| 519 'target_name': 'mojo_shell_lib', | 526 'target_name': 'mojo_shell_lib', |
| 520 'type': 'static_library', | 527 'type': 'static_library', |
| 521 'dependencies': [ | 528 'dependencies': [ |
| 522 '../base/base.gyp:base', | 529 '../base/base.gyp:base', |
| 523 '../base/base.gyp:base_static', | 530 '../base/base.gyp:base_static', |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1030 'views/views_init_internal.h', | 1037 'views/views_init_internal.h', |
| 1031 ], | 1038 ], |
| 1032 'defines': [ | 1039 'defines': [ |
| 1033 'MOJO_VIEWS_IMPLEMENTATION', | 1040 'MOJO_VIEWS_IMPLEMENTATION', |
| 1034 ], | 1041 ], |
| 1035 }, | 1042 }, |
| 1036 ], | 1043 ], |
| 1037 }], | 1044 }], |
| 1038 ], | 1045 ], |
| 1039 } | 1046 } |
| OLD | NEW |