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

Unified Diff: mojo/mojo_examples.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 onto dave's CL to move ServiceLoader ownership 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
Index: mojo/mojo_examples.gypi
diff --git a/mojo/mojo_examples.gypi b/mojo/mojo_examples.gypi
index 1aa4438d353fff69ba858e6b6f466ff3a033dff3..a8167d4d0f8fdd18c19b719947619adaf764fbf2 100644
--- a/mojo/mojo_examples.gypi
+++ b/mojo/mojo_examples.gypi
@@ -319,5 +319,32 @@
},
],
}],
+ ['OS=="linux"', {
+ 'targets': [
+ {
+ 'target_name': 'mojo_dbus_echo',
+ 'type': 'shared_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'mojo_bindings',
+ 'mojo_environment_standalone',
+ 'mojo_echo_bindings',
+ 'mojo_shell_client',
+ 'mojo_system',
+ 'mojo_utility',
+ ],
+ 'sources': [
+ 'examples/dbus_echo/dbus_echo_app.cc',
+ ],
+ },
+ {
DaveMoore 2014/04/22 20:39:51 Since this doesn't run on android you can remove t
Chris Masone 2014/04/22 21:16:30 Done.
+ 'target_name': 'package_mojo_dbus_echo',
+ 'variables': {
+ 'app_name': 'mojo_dbus_echo',
+ },
+ 'includes': [ 'build/package_app.gypi' ],
+ },
+ ],
+ }],
],
}

Powered by Google App Engine
This is Rietveld 408576698