OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'ipc.gypi', | 10 'ipc.gypi', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 'ipc_channel_unittest.cc', | 50 'ipc_channel_unittest.cc', |
51 'ipc_fuzzing_tests.cc', | 51 'ipc_fuzzing_tests.cc', |
52 'ipc_message_unittest.cc', | 52 'ipc_message_unittest.cc', |
53 'ipc_message_utils_unittest.cc', | 53 'ipc_message_utils_unittest.cc', |
54 'ipc_send_fds_test.cc', | 54 'ipc_send_fds_test.cc', |
55 'ipc_sync_channel_unittest.cc', | 55 'ipc_sync_channel_unittest.cc', |
56 'ipc_sync_message_unittest.cc', | 56 'ipc_sync_message_unittest.cc', |
57 'ipc_sync_message_unittest.h', | 57 'ipc_sync_message_unittest.h', |
58 'ipc_test_base.cc', | 58 'ipc_test_base.cc', |
59 'ipc_test_base.h', | 59 'ipc_test_base.h', |
| 60 'ipc_test_channel_listener.cc', |
| 61 'ipc_test_channel_listener.h', |
60 'run_all_unittests.cc', | 62 'run_all_unittests.cc', |
61 'sync_socket_unittest.cc', | 63 'sync_socket_unittest.cc', |
62 'unix_domain_socket_util_unittest.cc', | 64 'unix_domain_socket_util_unittest.cc', |
63 ], | 65 ], |
64 'conditions': [ | 66 'conditions': [ |
65 ['OS == "win" or OS == "ios"', { | 67 ['OS == "win" or OS == "ios"', { |
66 'sources!': [ | 68 'sources!': [ |
67 'unix_domain_socket_util_unittest.cc', | 69 'unix_domain_socket_util_unittest.cc', |
68 ], | 70 ], |
69 }], | 71 }], |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 'target_name': 'test_support_ipc', | 127 'target_name': 'test_support_ipc', |
126 'type': 'static_library', | 128 'type': 'static_library', |
127 'dependencies': [ | 129 'dependencies': [ |
128 'ipc', | 130 'ipc', |
129 '../base/base.gyp:base', | 131 '../base/base.gyp:base', |
130 '../testing/gtest.gyp:gtest', | 132 '../testing/gtest.gyp:gtest', |
131 ], | 133 ], |
132 'sources': [ | 134 'sources': [ |
133 'ipc_multiprocess_test.cc', | 135 'ipc_multiprocess_test.cc', |
134 'ipc_multiprocess_test.h', | 136 'ipc_multiprocess_test.h', |
| 137 'ipc_test_base.cc', |
| 138 'ipc_test_base.h', |
| 139 'ipc_test_channel_listener.cc', |
| 140 'ipc_test_channel_listener.h', |
135 'ipc_test_sink.cc', | 141 'ipc_test_sink.cc', |
136 'ipc_test_sink.h', | 142 'ipc_test_sink.h', |
137 ], | 143 ], |
138 }, | 144 }, |
139 ], | 145 ], |
140 'conditions': [ | 146 'conditions': [ |
141 ['OS=="win" and target_arch=="ia32"', { | 147 ['OS=="win" and target_arch=="ia32"', { |
142 'targets': [ | 148 'targets': [ |
143 { | 149 { |
144 'target_name': 'ipc_win64', | 150 'target_name': 'ipc_win64', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 'ipc_perftests', | 193 'ipc_perftests', |
188 ], | 194 ], |
189 'variables': { | 195 'variables': { |
190 'test_suite_name': 'ipc_perftests', | 196 'test_suite_name': 'ipc_perftests', |
191 }, | 197 }, |
192 'includes': [ '../build/apk_test.gypi' ], | 198 'includes': [ '../build/apk_test.gypi' ], |
193 }], | 199 }], |
194 }], | 200 }], |
195 ], | 201 ], |
196 } | 202 } |
OLD | NEW |