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

Side by Side Diff: mojo/mojo_public.gypi

Issue 228723002: Java API for mojo system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding shared handle. 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 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_system', 4 'target_name': 'mojo_system',
5 'type': '<(component)', 5 'type': '<(component)',
6 'defines': [ 6 'defines': [
7 'MOJO_SYSTEM_IMPLEMENTATION', 7 'MOJO_SYSTEM_IMPLEMENTATION',
8 ], 8 ],
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 'public/cpp/shell/lib/service.cc', 382 'public/cpp/shell/lib/service.cc',
383 ], 383 ],
384 'dependencies': [ 384 'dependencies': [
385 'mojo_shell_bindings', 385 'mojo_shell_bindings',
386 ], 386 ],
387 'export_dependent_settings': [ 387 'export_dependent_settings': [
388 'mojo_shell_bindings', 388 'mojo_shell_bindings',
389 ], 389 ],
390 }, 390 },
391 ], 391 ],
392 'conditions': [
393 ['OS == "android"', {
394 'targets': [
395 {
396 'target_name': 'mojo_public_java',
397 'type': 'none',
398 'variables': {
399 'java_in_dir': 'public/java',
400 },
401 'includes': [ '../build/java.gypi' ],
402 },
403 ],
404 }],
405 ],
392 } 406 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698