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

Side by Side Diff: mojo/mojo.gyp

Issue 242763003: Implement a trivial Mojo EchoService that can be connected to over DBus (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Dropped logging in dbus_echo_service to VLOG Created 6 years, 8 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
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 ['use_aura==1', { 58 ['use_aura==1', {
59 'dependencies': [ 59 'dependencies': [
60 'mojo_aura_demo', 60 'mojo_aura_demo',
61 'mojo_launcher', 61 'mojo_launcher',
62 'mojo_view_manager', 62 'mojo_view_manager',
63 ], 63 ],
64 }], 64 }],
65 ] 65 ]
66 }, 66 },
67 { 67 {
68 'target_name': 'mojo_external_service_bindings',
69 'type': 'static_library',
70 'sources': [
71 'shell/external_service.mojom',
72 ],
73 'variables': {
74 'mojom_base_output_dir': 'mojo',
75 },
76 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
77 'export_dependent_settings': [
78 'mojo_bindings',
79 ],
80 'dependencies': [
81 'mojo_bindings',
82 ],
83 },
84 {
68 'target_name': 'mojo_run_all_unittests', 85 'target_name': 'mojo_run_all_unittests',
69 'type': 'static_library', 86 'type': 'static_library',
70 'dependencies': [ 87 'dependencies': [
71 '../base/base.gyp:base', 88 '../base/base.gyp:base',
72 '../base/base.gyp:test_support_base', 89 '../base/base.gyp:test_support_base',
73 '../testing/gtest.gyp:gtest', 90 '../testing/gtest.gyp:gtest',
74 'mojo_system_impl', 91 'mojo_system_impl',
75 'mojo_test_support', 92 'mojo_test_support',
76 'mojo_test_support_impl', 93 'mojo_test_support_impl',
77 ], 94 ],
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 'spy/spy.cc', 420 'spy/spy.cc',
404 'spy/spy.h', 421 'spy/spy.h',
405 ], 422 ],
406 }, 423 },
407 { 424 {
408 'target_name': 'mojo_shell_lib', 425 'target_name': 'mojo_shell_lib',
409 'type': 'static_library', 426 'type': 'static_library',
410 'dependencies': [ 427 'dependencies': [
411 '../base/base.gyp:base', 428 '../base/base.gyp:base',
412 '../base/base.gyp:base_static', 429 '../base/base.gyp:base_static',
430 '../build/linux/system.gyp:dbus',
Chris Masone 2014/04/18 18:26:28 I need to make all of this linux-specific stuff be
431 '../dbus/dbus.gyp:dbus',
413 '../net/net.gyp:net', 432 '../net/net.gyp:net',
414 '../url/url.gyp:url_lib', 433 '../url/url.gyp:url_lib',
434 'mojo_external_service_bindings',
415 'mojo_gles2_impl', 435 'mojo_gles2_impl',
416 'mojo_service_manager', 436 'mojo_service_manager',
417 'mojo_shell_bindings', 437 'mojo_shell_bindings',
418 'mojo_system_impl', 438 'mojo_system_impl',
419 'mojo_native_viewport_service', 439 'mojo_native_viewport_service',
420 'mojo_spy', 440 'mojo_spy',
421 ], 441 ],
422 'variables': { 442 'variables': {
423 'mojom_base_output_dir': 'mojo', 443 'mojom_base_output_dir': 'mojo',
424 }, 444 },
425 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 445 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
426 'sources': [ 446 'sources': [
427 'shell/app_child_process.cc', 447 'shell/app_child_process.cc',
428 'shell/app_child_process.h', 448 'shell/app_child_process.h',
429 'shell/app_child_process.mojom', 449 'shell/app_child_process.mojom',
430 'shell/app_child_process_host.cc', 450 'shell/app_child_process_host.cc',
431 'shell/app_child_process_host.h', 451 'shell/app_child_process_host.h',
432 'shell/child_process.cc', 452 'shell/child_process.cc',
433 'shell/child_process.h', 453 'shell/child_process.h',
434 'shell/child_process_host.cc', 454 'shell/child_process_host.cc',
435 'shell/child_process_host.h', 455 'shell/child_process_host.h',
436 'shell/context.cc', 456 'shell/context.cc',
437 'shell/context.h', 457 'shell/context.h',
458 'shell/dbus_service_loader.cc',
459 'shell/dbus_service_loader.h',
438 'shell/dynamic_service_loader.cc', 460 'shell/dynamic_service_loader.cc',
439 'shell/dynamic_service_loader.h', 461 'shell/dynamic_service_loader.h',
440 'shell/dynamic_service_runner.h', 462 'shell/dynamic_service_runner.h',
441 'shell/init.cc', 463 'shell/init.cc',
442 'shell/init.h', 464 'shell/init.h',
443 'shell/in_process_dynamic_service_runner.cc', 465 'shell/in_process_dynamic_service_runner.cc',
444 'shell/in_process_dynamic_service_runner.h', 466 'shell/in_process_dynamic_service_runner.h',
445 'shell/keep_alive.cc', 467 'shell/keep_alive.cc',
446 'shell/keep_alive.h', 468 'shell/keep_alive.h',
447 'shell/loader.cc', 469 'shell/loader.cc',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 'mojo_js_unittests.isolate', 675 'mojo_js_unittests.isolate',
654 ], 676 ],
655 'sources': [ 677 'sources': [
656 'mojo_js_unittests.isolate', 678 'mojo_js_unittests.isolate',
657 ], 679 ],
658 }, 680 },
659 ], 681 ],
660 }], 682 }],
661 ], 683 ],
662 } 684 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698