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 ], |
(...skipping 12 matching lines...) Expand all Loading... |
23 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 23 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
24 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', | 24 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', |
25 '../../mojo/mojo_base.gyp:mojo_environment_chromium', | 25 '../../mojo/mojo_base.gyp:mojo_environment_chromium', |
26 '../../mojo/mojo_base.gyp:mojo_system_impl', | 26 '../../mojo/mojo_base.gyp:mojo_system_impl', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'ipc_channel_mojo.cc', | 29 'ipc_channel_mojo.cc', |
30 'ipc_channel_mojo.h', | 30 'ipc_channel_mojo.h', |
31 'ipc_channel_mojo_readers.cc', | 31 'ipc_channel_mojo_readers.cc', |
32 'ipc_channel_mojo_readers.h', | 32 'ipc_channel_mojo_readers.h', |
| 33 'ipc_mojo_bootstrap.cc', |
| 34 'ipc_mojo_bootstrap.h', |
33 'ipc_message_pipe_reader.cc', | 35 'ipc_message_pipe_reader.cc', |
34 'ipc_message_pipe_reader.h', | 36 'ipc_message_pipe_reader.h', |
35 ], | 37 ], |
36 # TODO(gregoryd): direct_dependent_settings should be shared with the | 38 # TODO(gregoryd): direct_dependent_settings should be shared with the |
37 # 64-bit target, but it doesn't work due to a bug in gyp | 39 # 64-bit target, but it doesn't work due to a bug in gyp |
38 'direct_dependent_settings': { | 40 'direct_dependent_settings': { |
39 'include_dirs': [ | 41 'include_dirs': [ |
40 '..', | 42 '..', |
41 ], | 43 ], |
42 }, | 44 }, |
(...skipping 12 matching lines...) Expand all Loading... |
55 '../../mojo/mojo_base.gyp:mojo_system_impl', | 57 '../../mojo/mojo_base.gyp:mojo_system_impl', |
56 '../../testing/gtest.gyp:gtest', | 58 '../../testing/gtest.gyp:gtest', |
57 'ipc_mojo', | 59 'ipc_mojo', |
58 ], | 60 ], |
59 'include_dirs': [ | 61 'include_dirs': [ |
60 '..' | 62 '..' |
61 ], | 63 ], |
62 'sources': [ | 64 'sources': [ |
63 'run_all_unittests.cc', | 65 'run_all_unittests.cc', |
64 'ipc_channel_mojo_unittest.cc', | 66 'ipc_channel_mojo_unittest.cc', |
| 67 'ipc_mojo_bootstrap_unittest.cc', |
65 ], | 68 ], |
66 'conditions': [ | 69 'conditions': [ |
67 ], | 70 ], |
68 }, | 71 }, |
69 { | 72 { |
70 'target_name': 'ipc_mojo_perftests', | 73 'target_name': 'ipc_mojo_perftests', |
71 'type': '<(gtest_target_type)', | 74 'type': '<(gtest_target_type)', |
72 'dependencies': [ | 75 'dependencies': [ |
73 '../ipc.gyp:ipc', | 76 '../ipc.gyp:ipc', |
74 '../ipc.gyp:test_support_ipc', | 77 '../ipc.gyp:test_support_ipc', |
(...skipping 11 matching lines...) Expand all Loading... |
86 '..' | 89 '..' |
87 ], | 90 ], |
88 'sources': [ | 91 'sources': [ |
89 'ipc_mojo_perftest.cc', | 92 'ipc_mojo_perftest.cc', |
90 ], | 93 ], |
91 'conditions': [ | 94 'conditions': [ |
92 ], | 95 ], |
93 }, | 96 }, |
94 ], | 97 ], |
95 } | 98 } |
OLD | NEW |