| OLD | NEW |
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'mojo_system', |
| 5 'type': 'shared_library', |
| 6 'defines': [ |
| 7 'MOJO_SYSTEM_IMPLEMENTATION', |
| 8 ], |
| 9 'include_dirs': [ |
| 10 '..', |
| 11 ], |
| 12 'direct_dependent_settings': { |
| 13 'include_dirs': [ |
| 14 '..', |
| 15 ], |
| 16 }, |
| 17 'sources': [ |
| 18 'public/system/core.h', |
| 19 'public/system/core_cpp.h', |
| 20 'public/system/core_private.cc', |
| 21 'public/system/core_private.h', |
| 22 'public/system/macros.h', |
| 23 'public/system/system_export.h', |
| 24 ], |
| 25 }, |
| 26 { |
| 4 'target_name': 'mojo_public_test_support', | 27 'target_name': 'mojo_public_test_support', |
| 5 'type': 'static_library', | 28 'type': 'static_library', |
| 6 'dependencies': [ | 29 'dependencies': [ |
| 7 '../base/base.gyp:base', | 30 '../base/base.gyp:base', |
| 8 '../testing/gtest.gyp:gtest', | 31 '../testing/gtest.gyp:gtest', |
| 9 'mojo_system', | 32 'mojo_system', |
| 10 ], | 33 ], |
| 11 'sources': [ | 34 'sources': [ |
| 12 'public/tests/simple_bindings_support.cc', | 35 'public/tests/simple_bindings_support.cc', |
| 13 'public/tests/simple_bindings_support.h', | 36 'public/tests/simple_bindings_support.h', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ], | 124 ], |
| 102 'dependencies': [ | 125 'dependencies': [ |
| 103 '../testing/gtest.gyp:gtest', | 126 '../testing/gtest.gyp:gtest', |
| 104 'mojo_public_test_support', | 127 'mojo_public_test_support', |
| 105 'mojo_run_all_unittests', | 128 'mojo_run_all_unittests', |
| 106 'sample_service', | 129 'sample_service', |
| 107 ], | 130 ], |
| 108 }, | 131 }, |
| 109 ], | 132 ], |
| 110 } | 133 } |
| OLD | NEW |