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 '..', |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 'dependencies': [ | 154 'dependencies': [ |
155 '../base/base.gyp:base', | 155 '../base/base.gyp:base', |
156 '../testing/gtest.gyp:gtest', | 156 '../testing/gtest.gyp:gtest', |
157 'mojo_environment_standalone', | 157 'mojo_environment_standalone', |
158 'mojo_public_test_utils', | 158 'mojo_public_test_utils', |
159 'mojo_run_all_unittests', | 159 'mojo_run_all_unittests', |
160 'mojo_utility', | 160 'mojo_utility', |
161 ], | 161 ], |
162 'sources': [ | 162 'sources': [ |
163 'public/cpp/environment/tests/async_waiter_unittest.cc', | 163 'public/cpp/environment/tests/async_waiter_unittest.cc', |
| 164 'public/cpp/environment/tests/logger_unittest.cc', |
164 ], | 165 ], |
165 }, | 166 }, |
166 { | 167 { |
167 'target_name': 'mojo_public_system_unittests', | 168 'target_name': 'mojo_public_system_unittests', |
168 'type': 'executable', | 169 'type': 'executable', |
169 'dependencies': [ | 170 'dependencies': [ |
170 '../base/base.gyp:base', | 171 '../base/base.gyp:base', |
171 '../testing/gtest.gyp:gtest', | 172 '../testing/gtest.gyp:gtest', |
172 'mojo_cpp_bindings', | 173 'mojo_cpp_bindings', |
173 'mojo_public_test_utils', | 174 'mojo_public_test_utils', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 'mojo_cpp_bindings', | 310 'mojo_cpp_bindings', |
310 ], | 311 ], |
311 'dependencies': [ | 312 'dependencies': [ |
312 'mojo_cpp_bindings', | 313 'mojo_cpp_bindings', |
313 ], | 314 ], |
314 }, | 315 }, |
315 { | 316 { |
316 'target_name': 'mojo_environment_standalone', | 317 'target_name': 'mojo_environment_standalone', |
317 'type': 'static_library', | 318 'type': 'static_library', |
318 'sources': [ | 319 'sources': [ |
| 320 'public/c/environment/async_waiter.h', |
| 321 'public/c/environment/logger.h', |
319 'public/cpp/environment/default_async_waiter.h', | 322 'public/cpp/environment/default_async_waiter.h', |
| 323 'public/cpp/environment/default_logger.h', |
320 'public/cpp/environment/environment.h', | 324 'public/cpp/environment/environment.h', |
321 'public/cpp/environment/lib/default_async_waiter.cc', | 325 'public/cpp/environment/lib/default_async_waiter.cc', |
| 326 'public/cpp/environment/lib/default_logger.cc', |
322 'public/cpp/environment/lib/environment.cc', | 327 'public/cpp/environment/lib/environment.cc', |
323 ], | 328 ], |
324 'include_dirs': [ | 329 'include_dirs': [ |
325 '..', | 330 '..', |
326 ], | 331 ], |
327 }, | 332 }, |
328 { | 333 { |
329 'target_name': 'mojo_utility', | 334 'target_name': 'mojo_utility', |
330 'type': 'static_library', | 335 'type': 'static_library', |
331 'sources': [ | 336 'sources': [ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 }, | 429 }, |
425 'dependencies': [ | 430 'dependencies': [ |
426 'mojo_public_java', | 431 'mojo_public_java', |
427 ], | 432 ], |
428 'includes': [ '../build/java.gypi' ], | 433 'includes': [ '../build/java.gypi' ], |
429 }, | 434 }, |
430 ], | 435 ], |
431 }], | 436 }], |
432 ], | 437 ], |
433 } | 438 } |
OLD | NEW |