| 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': [ '../../mojo/mojom_bindings_generator.gypi' ], | 20 'includes': [ '../../third_party/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 '../../mojo/mojo_edk.gyp:mojo_system_impl', | 26 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl', |
| 27 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | 27 '../../third_party/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_channel_mojo_host.cc', | 35 'ipc_channel_mojo_host.cc', |
| 36 'ipc_channel_mojo_host.h', | 36 'ipc_channel_mojo_host.h', |
| 37 'ipc_mojo_bootstrap.cc', | 37 'ipc_mojo_bootstrap.cc', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 50 { | 50 { |
| 51 'target_name': 'ipc_mojo_unittests', | 51 'target_name': 'ipc_mojo_unittests', |
| 52 'type': '<(gtest_target_type)', | 52 'type': '<(gtest_target_type)', |
| 53 'dependencies': [ | 53 'dependencies': [ |
| 54 '../ipc.gyp:ipc', | 54 '../ipc.gyp:ipc', |
| 55 '../ipc.gyp:test_support_ipc', | 55 '../ipc.gyp:test_support_ipc', |
| 56 '../../base/base.gyp:base', | 56 '../../base/base.gyp:base', |
| 57 '../../base/base.gyp:base_i18n', | 57 '../../base/base.gyp:base_i18n', |
| 58 '../../base/base.gyp:test_support_base', | 58 '../../base/base.gyp:test_support_base', |
| 59 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 59 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 60 '../../mojo/mojo_edk.gyp:mojo_system_impl', | |
| 61 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
| 62 '../../testing/gtest.gyp:gtest', | 60 '../../testing/gtest.gyp:gtest', |
| 61 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl', |
| 62 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 63 'ipc_mojo', | 63 'ipc_mojo', |
| 64 ], | 64 ], |
| 65 'include_dirs': [ | 65 'include_dirs': [ |
| 66 '..' | 66 '..' |
| 67 ], | 67 ], |
| 68 'sources': [ | 68 'sources': [ |
| 69 'async_handle_waiter_unittest.cc', | 69 'async_handle_waiter_unittest.cc', |
| 70 'run_all_unittests.cc', | 70 'run_all_unittests.cc', |
| 71 'ipc_channel_mojo_unittest.cc', | 71 'ipc_channel_mojo_unittest.cc', |
| 72 'ipc_mojo_bootstrap_unittest.cc', | 72 'ipc_mojo_bootstrap_unittest.cc', |
| 73 ], | 73 ], |
| 74 'conditions': [ | 74 'conditions': [ |
| 75 ], | 75 ], |
| 76 }, | 76 }, |
| 77 { | 77 { |
| 78 'target_name': 'ipc_mojo_perftests', | 78 'target_name': 'ipc_mojo_perftests', |
| 79 'type': '<(gtest_target_type)', | 79 'type': '<(gtest_target_type)', |
| 80 'dependencies': [ | 80 'dependencies': [ |
| 81 '../ipc.gyp:ipc', | 81 '../ipc.gyp:ipc', |
| 82 '../ipc.gyp:test_support_ipc', | 82 '../ipc.gyp:test_support_ipc', |
| 83 '../../base/base.gyp:base', | 83 '../../base/base.gyp:base', |
| 84 '../../base/base.gyp:base_i18n', | 84 '../../base/base.gyp:base_i18n', |
| 85 '../../base/base.gyp:test_support_base', | 85 '../../base/base.gyp:test_support_base', |
| 86 '../../base/base.gyp:test_support_perf', | 86 '../../base/base.gyp:test_support_perf', |
| 87 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 87 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
| 88 '../../mojo/mojo_edk.gyp:mojo_system_impl', | |
| 89 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
| 90 '../../testing/gtest.gyp:gtest', | 88 '../../testing/gtest.gyp:gtest', |
| 89 '../../third_party/mojo/mojo_edk.gyp:mojo_system_impl', |
| 90 '../../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 91 'ipc_mojo', | 91 'ipc_mojo', |
| 92 ], | 92 ], |
| 93 'include_dirs': [ | 93 'include_dirs': [ |
| 94 '..' | 94 '..' |
| 95 ], | 95 ], |
| 96 'sources': [ | 96 'sources': [ |
| 97 'ipc_mojo_perftest.cc', | 97 'ipc_mojo_perftest.cc', |
| 98 ], | 98 ], |
| 99 'conditions': [ | 99 'conditions': [ |
| 100 ], | 100 ], |
| 101 }, | 101 }, |
| 102 ], | 102 ], |
| 103 } | 103 } |
| OLD | NEW |