| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 'target_name': 'mojo_common_test_support', | 255 'target_name': 'mojo_common_test_support', |
| 256 'type': 'static_library', | 256 'type': 'static_library', |
| 257 'dependencies': [ | 257 'dependencies': [ |
| 258 '../base/base.gyp:base', | 258 '../base/base.gyp:base', |
| 259 '../base/base.gyp:test_support_base', | 259 '../base/base.gyp:test_support_base', |
| 260 '../testing/gtest.gyp:gtest', | 260 '../testing/gtest.gyp:gtest', |
| 261 'mojo_system', | 261 'mojo_system', |
| 262 'mojo_system_impl', | 262 'mojo_system_impl', |
| 263 ], | 263 ], |
| 264 'sources': [ | 264 'sources': [ |
| 265 'common/test/multiprocess_test_base.cc', | 265 'common/test/multiprocess_test_helper.cc', |
| 266 'common/test/multiprocess_test_base.h', | 266 'common/test/multiprocess_test_helper.h', |
| 267 'common/test/test_utils.h', | 267 'common/test/test_utils.h', |
| 268 'common/test/test_utils_posix.cc', | 268 'common/test/test_utils_posix.cc', |
| 269 'common/test/test_utils_win.cc', | 269 'common/test/test_utils_win.cc', |
| 270 ], | 270 ], |
| 271 }, | 271 }, |
| 272 { | 272 { |
| 273 'target_name': 'mojo_common_unittests', | 273 'target_name': 'mojo_common_unittests', |
| 274 'type': 'executable', | 274 'type': 'executable', |
| 275 'dependencies': [ | 275 'dependencies': [ |
| 276 '../base/base.gyp:base', | 276 '../base/base.gyp:base', |
| 277 '../base/base.gyp:base_message_loop_tests', | 277 '../base/base.gyp:base_message_loop_tests', |
| 278 '../testing/gtest.gyp:gtest', | 278 '../testing/gtest.gyp:gtest', |
| 279 'mojo_bindings', | 279 'mojo_bindings', |
| 280 'mojo_environment_chromium', | 280 'mojo_environment_chromium', |
| 281 'mojo_common_lib', | 281 'mojo_common_lib', |
| 282 'mojo_common_test_support', | 282 'mojo_common_test_support', |
| 283 'mojo_public_test_utils', | 283 'mojo_public_test_utils', |
| 284 'mojo_run_all_unittests', | 284 'mojo_run_all_unittests', |
| 285 'mojo_system', | 285 'mojo_system', |
| 286 'mojo_system_impl', | 286 'mojo_system_impl', |
| 287 ], | 287 ], |
| 288 'sources': [ | 288 'sources': [ |
| 289 'common/common_type_converters_unittest.cc', | 289 'common/common_type_converters_unittest.cc', |
| 290 'common/handle_watcher_unittest.cc', | 290 'common/handle_watcher_unittest.cc', |
| 291 'common/message_pump_mojo_unittest.cc', | 291 'common/message_pump_mojo_unittest.cc', |
| 292 'common/test/multiprocess_test_base_unittest.cc', | 292 'common/test/multiprocess_test_helper_unittest.cc', |
| 293 ], | 293 ], |
| 294 }, | 294 }, |
| 295 { | 295 { |
| 296 'target_name': 'mojo_environment_chromium', | 296 'target_name': 'mojo_environment_chromium', |
| 297 'type': 'static_library', | 297 'type': 'static_library', |
| 298 'dependencies': [ | 298 'dependencies': [ |
| 299 'mojo_environment_chromium_impl', | 299 'mojo_environment_chromium_impl', |
| 300 ], | 300 ], |
| 301 'sources': [ | 301 'sources': [ |
| 302 'environment/default_async_waiter.cc', | 302 'environment/default_async_waiter.cc', |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 527 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 528 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 528 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 529 'native_lib_target': 'libmojo_shell', | 529 'native_lib_target': 'libmojo_shell', |
| 530 }, | 530 }, |
| 531 'includes': [ '../build/java_apk.gypi' ], | 531 'includes': [ '../build/java_apk.gypi' ], |
| 532 } | 532 } |
| 533 ], | 533 ], |
| 534 }], | 534 }], |
| 535 ], | 535 ], |
| 536 } | 536 } |
| OLD | NEW |