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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 'public/cpp/environment/tests/logger_unittest.cc', |
| 165 'public/cpp/environment/tests/logging_unittest.cc', |
165 ], | 166 ], |
166 }, | 167 }, |
167 { | 168 { |
168 'target_name': 'mojo_public_system_unittests', | 169 'target_name': 'mojo_public_system_unittests', |
169 'type': 'executable', | 170 'type': 'executable', |
170 'dependencies': [ | 171 'dependencies': [ |
171 '../base/base.gyp:base', | 172 '../base/base.gyp:base', |
172 '../testing/gtest.gyp:gtest', | 173 '../testing/gtest.gyp:gtest', |
173 'mojo_cpp_bindings', | 174 'mojo_cpp_bindings', |
174 'mojo_public_test_utils', | 175 'mojo_public_test_utils', |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 'dependencies': [ | 314 'dependencies': [ |
314 'mojo_cpp_bindings', | 315 'mojo_cpp_bindings', |
315 ], | 316 ], |
316 }, | 317 }, |
317 { | 318 { |
318 'target_name': 'mojo_environment_standalone', | 319 'target_name': 'mojo_environment_standalone', |
319 'type': 'static_library', | 320 'type': 'static_library', |
320 'sources': [ | 321 'sources': [ |
321 'public/c/environment/async_waiter.h', | 322 'public/c/environment/async_waiter.h', |
322 'public/c/environment/logger.h', | 323 'public/c/environment/logger.h', |
| 324 'public/c/environment/logging.h', |
323 'public/cpp/environment/environment.h', | 325 'public/cpp/environment/environment.h', |
324 'public/cpp/environment/lib/default_async_waiter.cc', | 326 'public/cpp/environment/lib/default_async_waiter.cc', |
325 'public/cpp/environment/lib/default_async_waiter.h', | 327 'public/cpp/environment/lib/default_async_waiter.h', |
326 'public/cpp/environment/lib/default_logger.cc', | 328 'public/cpp/environment/lib/default_logger.cc', |
327 'public/cpp/environment/lib/default_logger.h', | 329 'public/cpp/environment/lib/default_logger.h', |
328 'public/cpp/environment/lib/environment.cc', | 330 'public/cpp/environment/lib/environment.cc', |
| 331 'public/cpp/environment/lib/logging.cc', |
329 ], | 332 ], |
330 'include_dirs': [ | 333 'include_dirs': [ |
331 '..', | 334 '..', |
332 ], | 335 ], |
333 }, | 336 }, |
334 { | 337 { |
335 'target_name': 'mojo_utility', | 338 'target_name': 'mojo_utility', |
336 'type': 'static_library', | 339 'type': 'static_library', |
337 'sources': [ | 340 'sources': [ |
338 'public/cpp/utility/mutex.h', | 341 'public/cpp/utility/mutex.h', |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 }, | 433 }, |
431 'dependencies': [ | 434 'dependencies': [ |
432 'mojo_public_java', | 435 'mojo_public_java', |
433 ], | 436 ], |
434 'includes': [ '../build/java.gypi' ], | 437 'includes': [ '../build/java.gypi' ], |
435 }, | 438 }, |
436 ], | 439 ], |
437 }], | 440 }], |
438 ], | 441 ], |
439 } | 442 } |
OLD | NEW |