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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/services/dbus_echo/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_echo_bindings',
5 'type': 'static_library',
6 'sources': [
7 'services/dbus_echo/echo.mojom',
8 ],
9 'variables': {
10 'mojom_base_output_dir': 'mojo',
11 },
12 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
13 'export_dependent_settings': [
14 'mojo_bindings',
15 ],
16 'dependencies': [
17 'mojo_bindings',
18 ],
19 },
20 {
4 'target_name': 'mojo_gles2_bindings', 21 'target_name': 'mojo_gles2_bindings',
5 'type': 'static_library', 22 'type': 'static_library',
6 'sources': [ 23 'sources': [
7 'services/gles2/command_buffer.mojom', 24 'services/gles2/command_buffer.mojom',
8 'services/gles2/command_buffer_type_conversions.cc', 25 'services/gles2/command_buffer_type_conversions.cc',
9 'services/gles2/command_buffer_type_conversions.h', 26 'services/gles2/command_buffer_type_conversions.h',
10 'services/gles2/mojo_buffer_backing.cc', 27 'services/gles2/mojo_buffer_backing.cc',
11 'services/gles2/mojo_buffer_backing.h', 28 'services/gles2/mojo_buffer_backing.h',
12 ], 29 ],
13 'variables': { 30 'variables': {
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 }, 232 },
216 { 233 {
217 'target_name': 'package_mojo_view_manager', 234 'target_name': 'package_mojo_view_manager',
218 'variables': { 235 'variables': {
219 'app_name': 'mojo_view_manager', 236 'app_name': 'mojo_view_manager',
220 }, 237 },
221 'includes': [ 'build/package_app.gypi' ], 238 'includes': [ 'build/package_app.gypi' ],
222 }, 239 },
223 ], 240 ],
224 }], 241 }],
242 ['OS=="linux"', {
243 'targets': [
244 {
245 'target_name': 'mojo_dbus_echo_service',
246 'type': 'executable',
247 'dependencies': [
248 '../base/base.gyp:base',
249 '../build/linux/system.gyp:dbus',
250 '../dbus/dbus.gyp:dbus',
251 'mojo_external_service_bindings',
252 'mojo_common_lib',
253 'mojo_environment_chromium',
254 'mojo_echo_bindings',
255 'mojo_shell_client',
256 'mojo_system_impl',
257 ],
258 'sources': [
259 'services/dbus_echo/dbus_echo_service.cc',
260 ],
261 },
262 ],
263 }],
225 ], 264 ],
226 } 265 }
OLDNEW
« 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