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 '..', |
11 ], | 11 ], |
12 'direct_dependent_settings': { | 12 'direct_dependent_settings': { |
13 'include_dirs': [ | 13 'include_dirs': [ |
14 '..', | 14 '..', |
15 ], | 15 ], |
16 }, | 16 }, |
| 17 'all_dependent_settings': { |
| 18 'conditions': [ |
| 19 # We need to be able to call the MojoSetSystemThunks() function in |
| 20 # system_thunks.cc |
| 21 ['OS=="android"', { |
| 22 'ldflags!': [ |
| 23 '-Wl,--exclude-libs=ALL', |
| 24 ], |
| 25 }], |
| 26 ], |
| 27 }, |
17 'sources': [ | 28 'sources': [ |
18 'public/c/system/async_waiter.h', | 29 'public/c/system/async_waiter.h', |
19 'public/c/system/core.h', | 30 'public/c/system/core.h', |
20 'public/c/system/macros.h', | 31 'public/c/system/macros.h', |
21 'public/c/system/system_export.h', | 32 'public/c/system/system_export.h', |
22 'public/platform/native/system_thunks.cc', | 33 'public/platform/native/system_thunks.cc', |
23 'public/platform/native/system_thunks.h', | 34 'public/platform/native/system_thunks.h', |
24 ], | 35 ], |
25 }, | 36 }, |
26 { | 37 { |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 ], | 355 ], |
345 'dependencies': [ | 356 'dependencies': [ |
346 'mojo_shell_bindings', | 357 'mojo_shell_bindings', |
347 ], | 358 ], |
348 'export_dependent_settings': [ | 359 'export_dependent_settings': [ |
349 'mojo_shell_bindings', | 360 'mojo_shell_bindings', |
350 ], | 361 ], |
351 }, | 362 }, |
352 ], | 363 ], |
353 } | 364 } |
OLD | NEW |