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

Side by Side 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 to switch MojoChannelInit to ChannelInit 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 | « mojo/mojo.gyp ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'mojo_sample_app', 8 'target_name': 'mojo_sample_app',
9 'type': 'shared_library', 9 'type': 'shared_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 'mojo_shell_client', 290 'mojo_shell_client',
291 'mojo_system', 291 'mojo_system',
292 'mojo_utility', 292 'mojo_utility',
293 ], 293 ],
294 'sources': [ 294 'sources': [
295 'examples/sample_view_manager_app/sample_view_manager_app.cc', 295 'examples/sample_view_manager_app/sample_view_manager_app.cc',
296 ], 296 ],
297 }, 297 },
298 ], 298 ],
299 }], 299 }],
300 ['OS=="linux"', {
301 'targets': [
302 {
303 'target_name': 'mojo_dbus_echo',
304 'type': 'shared_library',
305 'dependencies': [
306 '../base/base.gyp:base',
307 'mojo_bindings',
308 'mojo_environment_standalone',
309 'mojo_echo_bindings',
310 'mojo_shell_client',
311 'mojo_system',
312 'mojo_utility',
313 ],
314 'sources': [
315 'examples/dbus_echo/dbus_echo_app.cc',
316 ],
317 },
318 ],
319 }],
300 ], 320 ],
301 } 321 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698