Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: mojo/mojo.gyp

Issue 284743002: Adding a mojo interface to the mojo spy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | mojo/spy/public/spy.mojom » ('j') | mojo/spy/public/spy.mojom » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 { 440 {
441 'target_name': 'mojo_spy', 441 'target_name': 'mojo_spy',
442 'type': 'static_library', 442 'type': 'static_library',
443 'dependencies': [ 443 'dependencies': [
444 '../base/base.gyp:base', 444 '../base/base.gyp:base',
445 '../base/base.gyp:base_static', 445 '../base/base.gyp:base_static',
446 '../net/net.gyp:http_server', 446 '../net/net.gyp:http_server',
447 '../url/url.gyp:url_lib', 447 '../url/url.gyp:url_lib',
448 'mojo_service_manager', 448 'mojo_service_manager',
449 ], 449 ],
450 'variables': {
451 'mojom_base_output_dir': 'mojo',
452 },
453 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
450 'sources': [ 454 'sources': [
455 'spy/public/spy.mojom',
451 'spy/spy.cc', 456 'spy/spy.cc',
452 'spy/spy.h', 457 'spy/spy.h',
458 'spy/spy_server_impl.h',
459 'spy/spy_server_impl.cc',
453 'spy/websocket_server.cc', 460 'spy/websocket_server.cc',
454 'spy/websocket_server.h', 461 'spy/websocket_server.h',
455 ], 462 ],
456 }, 463 },
457 { 464 {
458 'target_name': 'mojo_shell_lib', 465 'target_name': 'mojo_shell_lib',
459 'type': 'static_library', 466 'type': 'static_library',
460 'dependencies': [ 467 'dependencies': [
461 '../base/base.gyp:base', 468 '../base/base.gyp:base',
462 '../base/base.gyp:base_static', 469 '../base/base.gyp:base_static',
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 'aura/screen_mojo.cc', 888 'aura/screen_mojo.cc',
882 'aura/screen_mojo.h', 889 'aura/screen_mojo.h',
883 'aura/window_tree_host_mojo.cc', 890 'aura/window_tree_host_mojo.cc',
884 'aura/window_tree_host_mojo.h', 891 'aura/window_tree_host_mojo.h',
885 ], 892 ],
886 }, 893 },
887 ], 894 ],
888 }], 895 }],
889 ], 896 ],
890 } 897 }
OLDNEW
« no previous file with comments | « no previous file | mojo/spy/public/spy.mojom » ('j') | mojo/spy/public/spy.mojom » ('J')

Powered by Google App Engine
This is Rietveld 408576698