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

Side by Side Diff: mojo/mojo_public.gypi

Issue 213313004: Add creation of ServiceManager to Content (2nd try) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add shell_client to mojo_pepper_container_app Created 6 years, 9 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/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 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_system', 4 'target_name': 'mojo_system',
5 'type': 'shared_library', 5 'type': 'shared_library',
6 'defines': [ 6 'defines': [
7 'MOJO_SYSTEM_IMPLEMENTATION', 7 'MOJO_SYSTEM_IMPLEMENTATION',
8 ], 8 ],
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 }], 350 }],
351 ], 351 ],
352 'include_dirs': [ 352 'include_dirs': [
353 '..', 353 '..',
354 ], 354 ],
355 }, 355 },
356 { 356 {
357 'target_name': 'mojo_shell_bindings', 357 'target_name': 'mojo_shell_bindings',
358 'type': 'static_library', 358 'type': 'static_library',
359 'sources': [ 359 'sources': [
360 'public/shell/lib/application.cc',
361 'public/shell/lib/service.cc',
362 'public/shell/application.h',
363 'public/shell/service.h',
364 'public/shell/shell.mojom', 360 'public/shell/shell.mojom',
365 ], 361 ],
366 'variables': { 362 'variables': {
367 'mojom_base_output_dir': 'mojo', 363 'mojom_base_output_dir': 'mojo',
368 }, 364 },
369 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], 365 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
370 'dependencies': [ 366 'dependencies': [
371 'mojo_bindings', 367 'mojo_bindings',
372 'mojo_system', 368 'mojo_system',
373 ], 369 ],
374 'export_dependent_settings': [ 370 'export_dependent_settings': [
375 'mojo_bindings', 371 'mojo_bindings',
376 'mojo_system', 372 ],
373 },
374 {
375 'target_name': 'mojo_shell_client',
376 'type': 'static_library',
377 'sources': [
378 'public/shell/lib/application.cc',
379 'public/shell/lib/service.cc',
380 'public/shell/application.h',
381 'public/shell/service.h',
382 ],
383 'dependencies': [
384 'mojo_shell_bindings',
385 ],
386 'export_dependent_settings': [
387 'mojo_shell_bindings',
377 ], 388 ],
378 }, 389 },
379 ], 390 ],
380 } 391 }
OLDNEW
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698