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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |