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

Unified Diff: mojo/mojo_services.gypi

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: Rebase to switch MojoChannelInit to ChannelInit 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/services/dbus_echo/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo_services.gypi
diff --git a/mojo/mojo_services.gypi b/mojo/mojo_services.gypi
index c71c6a6c3461b614f64fa55b753d4313638da2df..e4028faf17f065661c97ff0633e802b9a64c49fa 100644
--- a/mojo/mojo_services.gypi
+++ b/mojo/mojo_services.gypi
@@ -1,6 +1,23 @@
{
'targets': [
{
+ 'target_name': 'mojo_echo_bindings',
+ 'type': 'static_library',
+ 'sources': [
+ 'services/dbus_echo/echo.mojom',
+ ],
+ 'variables': {
+ 'mojom_base_output_dir': 'mojo',
+ },
+ 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
+ 'export_dependent_settings': [
+ 'mojo_bindings',
+ ],
+ 'dependencies': [
+ 'mojo_bindings',
+ ],
+ },
+ {
'target_name': 'mojo_gles2_bindings',
'type': 'static_library',
'sources': [
@@ -222,5 +239,27 @@
},
],
}],
+ ['OS=="linux"', {
+ 'targets': [
+ {
+ 'target_name': 'mojo_dbus_echo_service',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../build/linux/system.gyp:dbus',
+ '../dbus/dbus.gyp:dbus',
+ 'mojo_external_service_bindings',
+ 'mojo_common_lib',
+ 'mojo_environment_chromium',
+ 'mojo_echo_bindings',
+ 'mojo_shell_client',
+ 'mojo_system_impl',
+ ],
+ 'sources': [
+ 'services/dbus_echo/dbus_echo_service.cc',
+ ],
+ },
+ ],
+ }],
],
}
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/services/dbus_echo/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698