| OLD | NEW |
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'mojo_system', | 4 'target_name': 'mojo_system', |
| 5 'type': 'shared_library', | 5 'type': 'shared_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 'sources': [ | 17 'sources': [ |
| 18 'public/system/async_waiter.h', | 18 'public/c/system/async_waiter.h', |
| 19 'public/system/core.h', | 19 'public/c/system/core.h', |
| 20 'public/c/system/macros.h', |
| 21 'public/c/system/system_export.h', |
| 20 'public/system/core_cpp.h', | 22 'public/system/core_cpp.h', |
| 21 'public/system/core_private.cc', | 23 'public/system/core_private.cc', |
| 22 'public/system/core_private.h', | 24 'public/system/core_private.h', |
| 23 'public/system/macros.h', | |
| 24 'public/system/system_export.h', | |
| 25 ], | 25 ], |
| 26 'conditions': [ | 26 'conditions': [ |
| 27 ['OS=="mac"', { | 27 ['OS=="mac"', { |
| 28 'xcode_settings': { | 28 'xcode_settings': { |
| 29 # Make it a run-path dependent library. | 29 # Make it a run-path dependent library. |
| 30 'DYLIB_INSTALL_NAME_BASE': '@rpath', | 30 'DYLIB_INSTALL_NAME_BASE': '@rpath', |
| 31 }, | 31 }, |
| 32 'direct_dependent_settings': { | 32 'direct_dependent_settings': { |
| 33 'xcode_settings': { | 33 'xcode_settings': { |
| 34 # Look for run-path dependent libraries in the loader's directory. | 34 # Look for run-path dependent libraries in the loader's directory. |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 'mojo_bindings', | 360 'mojo_bindings', |
| 361 'mojo_system', | 361 'mojo_system', |
| 362 ], | 362 ], |
| 363 'export_dependent_settings': [ | 363 'export_dependent_settings': [ |
| 364 'mojo_bindings', | 364 'mojo_bindings', |
| 365 'mojo_system', | 365 'mojo_system', |
| 366 ], | 366 ], |
| 367 }, | 367 }, |
| 368 ], | 368 ], |
| 369 } | 369 } |
| OLD | NEW |