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 } | |
vtl
2014/04/17 14:54:15
}],
DaveMoore
2014/04/17 17:06:58
Done.
| |
26 ], | |
27 ]}, | |
vtl
2014/04/17 14:54:15
},
DaveMoore
2014/04/17 17:06:58
Done.
| |
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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
348 ], | 359 ], |
349 'dependencies': [ | 360 'dependencies': [ |
350 'mojo_shell_bindings', | 361 'mojo_shell_bindings', |
351 ], | 362 ], |
352 'export_dependent_settings': [ | 363 'export_dependent_settings': [ |
353 'mojo_shell_bindings', | 364 'mojo_shell_bindings', |
354 ], | 365 ], |
355 }, | 366 }, |
356 ], | 367 ], |
357 } | 368 } |
OLD | NEW |