| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 ], | 10 ], |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'ipc_mojo', | 13 'target_name': 'ipc_mojo', |
| 14 'type': '<(component)', | 14 'type': '<(component)', |
| 15 'variables': { | 15 'variables': { |
| 16 }, | 16 }, |
| 17 'defines': [ | 17 'defines': [ |
| 18 'IPC_MOJO_IMPLEMENTATION', | 18 'IPC_MOJO_IMPLEMENTATION', |
| 19 ], | 19 ], |
| 20 'includes': [ '../../third_party/mojo/mojom_bindings_generator.gypi' ], | 20 'includes': [ '../../mojo/mojom_bindings_generator.gypi' ], |
| 21 'dependencies': [ | 21 'dependencies': [ |
| 22 '../ipc.gyp:ipc', | 22 '../ipc.gyp:ipc', |
| 23 '../../base/base.gyp:base', | 23 '../../base/base.gyp:base', |
| 24 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 24 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 25 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 25 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 26 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl', | 26 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
| 27 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 27 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 'client_channel.mojom', | 30 'client_channel.mojom', |
| 31 'async_handle_waiter.cc', | 31 'async_handle_waiter.cc', |
| 32 'async_handle_waiter.h', | 32 'async_handle_waiter.h', |
| 33 'ipc_channel_mojo.cc', | 33 'ipc_channel_mojo.cc', |
| 34 'ipc_channel_mojo.h', | 34 'ipc_channel_mojo.h', |
| 35 'ipc_mojo_bootstrap.cc', | 35 'ipc_mojo_bootstrap.cc', |
| 36 'ipc_mojo_bootstrap.h', | 36 'ipc_mojo_bootstrap.h', |
| 37 'ipc_mojo_handle_attachment.cc', | 37 'ipc_mojo_handle_attachment.cc', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 56 { | 56 { |
| 57 'target_name': 'ipc_mojo_unittests', | 57 'target_name': 'ipc_mojo_unittests', |
| 58 'type': '<(gtest_target_type)', | 58 'type': '<(gtest_target_type)', |
| 59 'dependencies': [ | 59 'dependencies': [ |
| 60 '../ipc.gyp:ipc', | 60 '../ipc.gyp:ipc', |
| 61 '../ipc.gyp:test_support_ipc', | 61 '../ipc.gyp:test_support_ipc', |
| 62 '../../base/base.gyp:base', | 62 '../../base/base.gyp:base', |
| 63 '../../base/base.gyp:base_i18n', | 63 '../../base/base.gyp:base_i18n', |
| 64 '../../base/base.gyp:test_support_base', | 64 '../../base/base.gyp:test_support_base', |
| 65 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 65 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 66 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
| 67 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 66 '../../testing/gtest.gyp:gtest', | 68 '../../testing/gtest.gyp:gtest', |
| 67 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl', | |
| 68 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | |
| 69 'ipc_mojo', | 69 'ipc_mojo', |
| 70 ], | 70 ], |
| 71 'include_dirs': [ | 71 'include_dirs': [ |
| 72 '..' | 72 '..' |
| 73 ], | 73 ], |
| 74 'sources': [ | 74 'sources': [ |
| 75 'async_handle_waiter_unittest.cc', | 75 'async_handle_waiter_unittest.cc', |
| 76 'run_all_unittests.cc', | 76 'run_all_unittests.cc', |
| 77 |
| 78 # TODO(rockot): Re-enable these when we're ready to start using |
| 79 # ChannelMojo again. They need to be updated to support multiprocess |
| 80 # testing with the current Mojo EDK implementation. |
| 81 #"ipc_channel_mojo_unittest.cc", |
| 77 'ipc_channel_mojo_unittest.cc', | 82 'ipc_channel_mojo_unittest.cc', |
| 78 'ipc_mojo_bootstrap_unittest.cc', | 83 'ipc_mojo_bootstrap_unittest.cc', |
| 79 ], | 84 ], |
| 80 'conditions': [ | 85 'conditions': [ |
| 81 ], | 86 ], |
| 82 }, | 87 }, |
| 83 { | 88 { |
| 84 'target_name': 'ipc_mojo_perftests', | 89 'target_name': 'ipc_mojo_perftests', |
| 85 'type': '<(gtest_target_type)', | 90 'type': '<(gtest_target_type)', |
| 86 'dependencies': [ | 91 'dependencies': [ |
| 87 '../ipc.gyp:ipc', | 92 '../ipc.gyp:ipc', |
| 88 '../ipc.gyp:test_support_ipc', | 93 '../ipc.gyp:test_support_ipc', |
| 89 '../../base/base.gyp:base', | 94 '../../base/base.gyp:base', |
| 90 '../../base/base.gyp:base_i18n', | 95 '../../base/base.gyp:base_i18n', |
| 91 '../../base/base.gyp:test_support_base', | 96 '../../base/base.gyp:test_support_base', |
| 92 '../../base/base.gyp:test_support_perf', | 97 '../../base/base.gyp:test_support_perf', |
| 93 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 98 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 99 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
| 100 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 94 '../../testing/gtest.gyp:gtest', | 101 '../../testing/gtest.gyp:gtest', |
| 95 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl', | |
| 96 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | |
| 97 'ipc_mojo', | 102 'ipc_mojo', |
| 98 ], | 103 ], |
| 99 'include_dirs': [ | 104 'include_dirs': [ |
| 100 '..' | 105 '..' |
| 101 ], | 106 ], |
| 102 'sources': [ | 107 'sources': [ |
| 103 'ipc_mojo_perftest.cc', | 108 'ipc_mojo_perftest.cc', |
| 104 ], | 109 ], |
| 105 'conditions': [ | 110 'conditions': [ |
| 106 ], | 111 ], |
| 107 }, | 112 }, |
| 108 ], | 113 ], |
| 109 } | 114 } |
| OLD | NEW |