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

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: Dropped logging in dbus_echo_service to VLOG 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 ], 73 ],
74 }, 74 },
75 { 75 {
76 'target_name': 'package_mojo_compositor_app', 76 'target_name': 'package_mojo_compositor_app',
77 'variables': { 77 'variables': {
78 'app_name': 'mojo_compositor_app', 78 'app_name': 'mojo_compositor_app',
79 }, 79 },
80 'includes': [ 'build/package_app.gypi' ], 80 'includes': [ 'build/package_app.gypi' ],
81 }, 81 },
82 { 82 {
83 'target_name': 'mojo_dbus_echo',
84 'type': 'shared_library',
85 'dependencies': [
86 '../base/base.gyp:base',
87 'mojo_bindings',
88 'mojo_environment_standalone',
89 'mojo_echo_bindings',
90 'mojo_shell_client',
91 'mojo_system',
92 'mojo_utility',
93 ],
94 'sources': [
95 'examples/dbus_echo/dbus_echo_app.cc',
96 ],
97 },
98 {
99 'target_name': 'package_mojo_dbus_echo',
100 'variables': {
101 'app_name': 'mojo_dbus_echo',
102 },
103 'includes': [ 'build/package_app.gypi' ],
104 },
105 {
83 'target_name': 'mojo_pepper_container_app', 106 'target_name': 'mojo_pepper_container_app',
84 'type': 'shared_library', 107 'type': 'shared_library',
85 'dependencies': [ 108 'dependencies': [
86 '../base/base.gyp:base', 109 '../base/base.gyp:base',
87 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 110 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
88 '../gpu/gpu.gyp:command_buffer_common', 111 '../gpu/gpu.gyp:command_buffer_common',
89 '../ppapi/ppapi.gyp:ppapi_c', 112 '../ppapi/ppapi.gyp:ppapi_c',
90 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', 113 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube',
91 'mojo_common_lib', 114 'mojo_common_lib',
92 'mojo_environment_chromium', 115 'mojo_environment_chromium',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 'target_name': 'package_mojo_view_manager', 338 'target_name': 'package_mojo_view_manager',
316 'variables': { 339 'variables': {
317 'app_name': 'mojo_view_manager', 340 'app_name': 'mojo_view_manager',
318 }, 341 },
319 'includes': [ 'build/package_app.gypi' ], 342 'includes': [ 'build/package_app.gypi' ],
320 }, 343 },
321 ], 344 ],
322 }], 345 }],
323 ], 346 ],
324 } 347 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698