OLD | NEW |
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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 'public/cpp/shell/lib/service.cc', | 353 'public/cpp/shell/lib/service.cc', |
354 ], | 354 ], |
355 'dependencies': [ | 355 'dependencies': [ |
356 'mojo_shell_bindings', | 356 'mojo_shell_bindings', |
357 ], | 357 ], |
358 'export_dependent_settings': [ | 358 'export_dependent_settings': [ |
359 'mojo_shell_bindings', | 359 'mojo_shell_bindings', |
360 ], | 360 ], |
361 }, | 361 }, |
362 ], | 362 ], |
| 363 'conditions': [ |
| 364 ['OS == "android"', { |
| 365 'targets': [ |
| 366 { |
| 367 'target_name': 'mojo_public_java', |
| 368 'type': 'none', |
| 369 'variables': { |
| 370 'java_in_dir': 'public/java', |
| 371 }, |
| 372 'includes': [ '../build/java.gypi' ], |
| 373 }, |
| 374 ], |
| 375 }], |
| 376 ], |
363 } | 377 } |
OLD | NEW |