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

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: Automatically exclude DBusServiceLoader on non-Linux 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
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',
413 '../net/net.gyp:net', 430 '../net/net.gyp:net',
414 '../url/url.gyp:url_lib', 431 '../url/url.gyp:url_lib',
432 'mojo_external_service_bindings',
415 'mojo_gles2_impl', 433 'mojo_gles2_impl',
416 'mojo_service_manager', 434 'mojo_service_manager',
417 'mojo_shell_bindings', 435 'mojo_shell_bindings',
418 'mojo_system_impl', 436 'mojo_system_impl',
419 'mojo_native_viewport_service', 437 'mojo_native_viewport_service',
420 'mojo_spy', 438 'mojo_spy',
421 ], 439 ],
422 'variables': { 440 'variables': {
423 'mojom_base_output_dir': 'mojo', 441 'mojom_base_output_dir': 'mojo',
424 }, 442 },
425 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 443 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
426 'sources': [ 444 'sources': [
427 'shell/app_child_process.cc', 445 'shell/app_child_process.cc',
428 'shell/app_child_process.h', 446 'shell/app_child_process.h',
429 'shell/app_child_process.mojom', 447 'shell/app_child_process.mojom',
430 'shell/app_child_process_host.cc', 448 'shell/app_child_process_host.cc',
431 'shell/app_child_process_host.h', 449 'shell/app_child_process_host.h',
432 'shell/child_process.cc', 450 'shell/child_process.cc',
433 'shell/child_process.h', 451 'shell/child_process.h',
434 'shell/child_process_host.cc', 452 'shell/child_process_host.cc',
435 'shell/child_process_host.h', 453 'shell/child_process_host.h',
436 'shell/context.cc', 454 'shell/context.cc',
437 'shell/context.h', 455 'shell/context.h',
456 'shell/dbus_service_loader_linux.cc',
457 'shell/dbus_service_loader_linux.h',
438 'shell/dynamic_service_loader.cc', 458 'shell/dynamic_service_loader.cc',
439 'shell/dynamic_service_loader.h', 459 'shell/dynamic_service_loader.h',
440 'shell/dynamic_service_runner.h', 460 'shell/dynamic_service_runner.h',
441 'shell/init.cc', 461 'shell/init.cc',
442 'shell/init.h', 462 'shell/init.h',
443 'shell/in_process_dynamic_service_runner.cc', 463 'shell/in_process_dynamic_service_runner.cc',
444 'shell/in_process_dynamic_service_runner.h', 464 'shell/in_process_dynamic_service_runner.h',
445 'shell/keep_alive.cc', 465 'shell/keep_alive.cc',
446 'shell/keep_alive.h', 466 'shell/keep_alive.h',
447 'shell/loader.cc', 467 'shell/loader.cc',
448 'shell/loader.h', 468 'shell/loader.h',
449 'shell/network_delegate.cc', 469 'shell/network_delegate.cc',
450 'shell/network_delegate.h', 470 'shell/network_delegate.h',
451 'shell/out_of_process_dynamic_service_runner.cc', 471 'shell/out_of_process_dynamic_service_runner.cc',
452 'shell/out_of_process_dynamic_service_runner.h', 472 'shell/out_of_process_dynamic_service_runner.h',
453 'shell/run.cc', 473 'shell/run.cc',
454 'shell/run.h', 474 'shell/run.h',
455 'shell/storage.cc', 475 'shell/storage.cc',
456 'shell/storage.h', 476 'shell/storage.h',
457 'shell/switches.cc', 477 'shell/switches.cc',
458 'shell/switches.h', 478 'shell/switches.h',
459 'shell/task_runners.cc', 479 'shell/task_runners.cc',
460 'shell/task_runners.h', 480 'shell/task_runners.h',
461 'shell/test_child_process.cc', 481 'shell/test_child_process.cc',
462 'shell/test_child_process.h', 482 'shell/test_child_process.h',
463 'shell/url_request_context_getter.cc', 483 'shell/url_request_context_getter.cc',
464 'shell/url_request_context_getter.h', 484 'shell/url_request_context_getter.h',
465 ], 485 ],
486 'conditions': [
487 ['OS=="linux"', {
488 'dependencies': [
489 '../build/linux/system.gyp:dbus',
490 '../dbus/dbus.gyp:dbus',
491 ],
492 }],
493 ],
466 }, 494 },
467 { 495 {
468 'target_name': 'mojo_shell', 496 'target_name': 'mojo_shell',
469 'type': 'executable', 497 'type': 'executable',
470 'dependencies': [ 498 'dependencies': [
471 '../base/base.gyp:base', 499 '../base/base.gyp:base',
472 '../ui/gl/gl.gyp:gl', 500 '../ui/gl/gl.gyp:gl',
473 '../url/url.gyp:url_lib', 501 '../url/url.gyp:url_lib',
474 'mojo_common_lib', 502 'mojo_common_lib',
475 'mojo_environment_chromium', 503 'mojo_environment_chromium',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 'mojo_js_unittests.isolate', 681 'mojo_js_unittests.isolate',
654 ], 682 ],
655 'sources': [ 683 'sources': [
656 'mojo_js_unittests.isolate', 684 'mojo_js_unittests.isolate',
657 ], 685 ],
658 }, 686 },
659 ], 687 ],
660 }], 688 }],
661 ], 689 ],
662 } 690 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698