OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
9 'defines': [ | 9 'defines': [ |
10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 'dependencies': [ | 252 'dependencies': [ |
253 '../base/base.gyp:base', | 253 '../base/base.gyp:base', |
254 '../base/base.gyp:test_support_base', | 254 '../base/base.gyp:test_support_base', |
255 '../testing/gtest.gyp:gtest', | 255 '../testing/gtest.gyp:gtest', |
256 'mojo_system', | 256 'mojo_system', |
257 'mojo_system_impl', | 257 'mojo_system_impl', |
258 ], | 258 ], |
259 'sources': [ | 259 'sources': [ |
260 'common/test/multiprocess_test_base.cc', | 260 'common/test/multiprocess_test_base.cc', |
261 'common/test/multiprocess_test_base.h', | 261 'common/test/multiprocess_test_base.h', |
| 262 'common/test/test_utils.h', |
| 263 'common/test/test_utils_posix.cc', |
| 264 'common/test/test_utils_win.cc', |
262 ], | 265 ], |
263 }, | 266 }, |
264 { | 267 { |
265 'target_name': 'mojo_common_unittests', | 268 'target_name': 'mojo_common_unittests', |
266 'type': 'executable', | 269 'type': 'executable', |
267 'dependencies': [ | 270 'dependencies': [ |
268 '../base/base.gyp:base', | 271 '../base/base.gyp:base', |
269 '../base/base.gyp:base_message_loop_tests', | 272 '../base/base.gyp:base_message_loop_tests', |
270 '../testing/gtest.gyp:gtest', | 273 '../testing/gtest.gyp:gtest', |
271 'mojo_bindings', | 274 'mojo_bindings', |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 477 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
475 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 478 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
476 'native_lib_target': 'libmojo_shell', | 479 'native_lib_target': 'libmojo_shell', |
477 }, | 480 }, |
478 'includes': [ '../build/java_apk.gypi' ], | 481 'includes': [ '../build/java_apk.gypi' ], |
479 } | 482 } |
480 ], | 483 ], |
481 }], | 484 }], |
482 ], | 485 ], |
483 } | 486 } |
OLD | NEW |