| 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': { | 17 'all_dependent_settings': { |
| 18 'conditions': [ | 18 'conditions': [ |
| 19 # We need to be able to call the MojoSetSystemThunks() function in | 19 # We need to be able to call the MojoSetSystemThunks() function in |
| 20 # system_thunks.cc | 20 # system_thunks.cc |
| 21 ['OS=="android"', { | 21 ['OS=="android"', { |
| 22 'ldflags!': [ | 22 'ldflags!': [ |
| 23 '-Wl,--exclude-libs=ALL', | 23 '-Wl,--exclude-libs=ALL', |
| 24 ], | 24 ], |
| 25 }], | 25 }], |
| 26 ], | 26 ], |
| 27 }, | 27 }, |
| 28 'sources': [ | 28 'sources': [ |
| 29 'public/c/system/async_waiter.h', | |
| 30 'public/c/system/core.h', | 29 'public/c/system/core.h', |
| 31 'public/c/system/macros.h', | 30 'public/c/system/macros.h', |
| 32 'public/c/system/system_export.h', | 31 'public/c/system/system_export.h', |
| 33 'public/platform/native/system_thunks.cc', | 32 'public/platform/native/system_thunks.cc', |
| 34 'public/platform/native/system_thunks.h', | 33 'public/platform/native/system_thunks.h', |
| 35 ], | 34 ], |
| 36 }, | 35 }, |
| 37 { | 36 { |
| 38 'target_name': 'mojo_gles2', | 37 'target_name': 'mojo_gles2', |
| 39 'type': 'shared_library', | 38 'type': 'shared_library', |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ], | 354 ], |
| 356 'dependencies': [ | 355 'dependencies': [ |
| 357 'mojo_shell_bindings', | 356 'mojo_shell_bindings', |
| 358 ], | 357 ], |
| 359 'export_dependent_settings': [ | 358 'export_dependent_settings': [ |
| 360 'mojo_shell_bindings', | 359 'mojo_shell_bindings', |
| 361 ], | 360 ], |
| 362 }, | 361 }, |
| 363 ], | 362 ], |
| 364 } | 363 } |
| OLD | NEW |