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

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: Follow review 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': 'static_library', 5 'type': 'static_library',
6 'defines': [ 6 'defines': [
7 'MOJO_SYSTEM_IMPLEMENTATION', 7 'MOJO_SYSTEM_IMPLEMENTATION',
8 ], 8 ],
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 'public/cpp/shell/lib/service.cc', 343 'public/cpp/shell/lib/service.cc',
344 ], 344 ],
345 'dependencies': [ 345 'dependencies': [
346 'mojo_shell_bindings', 346 'mojo_shell_bindings',
347 ], 347 ],
348 'export_dependent_settings': [ 348 'export_dependent_settings': [
349 'mojo_shell_bindings', 349 'mojo_shell_bindings',
350 ], 350 ],
351 }, 351 },
352 ], 352 ],
353 'conditions': [
354 ['OS == "android"', {
355 'targets': [
356 {
357 'target_name': 'mojo_public_java',
358 'type': 'none',
359 'variables': {
360 'java_in_dir': 'public/java',
361 },
362 'includes': [ '../build/java.gypi' ],
363 },
364 ],
365 }],
366 ],
353 } 367 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698