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

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 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 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 '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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 }, 312 },
313 { 313 {
314 'target_name': 'package_mojo_view_manager', 314 'target_name': 'package_mojo_view_manager',
315 'variables': { 315 'variables': {
316 'app_name': 'mojo_view_manager', 316 'app_name': 'mojo_view_manager',
317 }, 317 },
318 'includes': [ 'build/package_app.gypi' ], 318 'includes': [ 'build/package_app.gypi' ],
319 }, 319 },
320 ], 320 ],
321 }], 321 }],
322 ['OS=="linux"', {
323 'targets': [
324 {
325 'target_name': 'mojo_dbus_echo',
326 'type': 'shared_library',
327 'dependencies': [
328 '../base/base.gyp:base',
329 'mojo_bindings',
330 'mojo_environment_standalone',
331 'mojo_echo_bindings',
332 'mojo_shell_client',
333 'mojo_system',
334 'mojo_utility',
335 ],
336 'sources': [
337 'examples/dbus_echo/dbus_echo_app.cc',
338 ],
339 },
340 {
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.
341 'target_name': 'package_mojo_dbus_echo',
342 'variables': {
343 'app_name': 'mojo_dbus_echo',
344 },
345 'includes': [ 'build/package_app.gypi' ],
346 },
347 ],
348 }],
322 ], 349 ],
323 } 350 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698