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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'ipc_channel_posix_unittest.cc', | 48 'ipc_channel_posix_unittest.cc', |
49 'ipc_channel_proxy_unittest.cc', | 49 'ipc_channel_proxy_unittest.cc', |
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', | |
59 'ipc_test_base.h', | |
60 'run_all_unittests.cc', | 58 'run_all_unittests.cc', |
61 'sync_socket_unittest.cc', | 59 'sync_socket_unittest.cc', |
62 'unix_domain_socket_util_unittest.cc', | 60 'unix_domain_socket_util_unittest.cc', |
63 ], | 61 ], |
64 'conditions': [ | 62 'conditions': [ |
65 ['OS == "win" or OS == "ios"', { | 63 ['OS == "win" or OS == "ios"', { |
66 'sources!': [ | 64 'sources!': [ |
67 'unix_domain_socket_util_unittest.cc', | 65 'unix_domain_socket_util_unittest.cc', |
68 ], | 66 ], |
69 }], | 67 }], |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 'target_name': 'test_support_ipc', | 123 'target_name': 'test_support_ipc', |
126 'type': 'static_library', | 124 'type': 'static_library', |
127 'dependencies': [ | 125 'dependencies': [ |
128 'ipc', | 126 'ipc', |
129 '../base/base.gyp:base', | 127 '../base/base.gyp:base', |
130 '../testing/gtest.gyp:gtest', | 128 '../testing/gtest.gyp:gtest', |
131 ], | 129 ], |
132 'sources': [ | 130 'sources': [ |
133 'ipc_multiprocess_test.cc', | 131 'ipc_multiprocess_test.cc', |
134 'ipc_multiprocess_test.h', | 132 'ipc_multiprocess_test.h', |
| 133 'ipc_test_base.cc', |
| 134 'ipc_test_base.h', |
| 135 'ipc_test_channel_listener.cc', |
| 136 'ipc_test_channel_listener.h', |
135 'ipc_test_sink.cc', | 137 'ipc_test_sink.cc', |
136 'ipc_test_sink.h', | 138 'ipc_test_sink.h', |
137 ], | 139 ], |
138 }, | 140 }, |
139 ], | 141 ], |
140 'conditions': [ | 142 'conditions': [ |
141 ['OS=="win" and target_arch=="ia32"', { | 143 ['OS=="win" and target_arch=="ia32"', { |
142 'targets': [ | 144 'targets': [ |
143 { | 145 { |
144 'target_name': 'ipc_win64', | 146 'target_name': 'ipc_win64', |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 'ipc_perftests', | 189 'ipc_perftests', |
188 ], | 190 ], |
189 'variables': { | 191 'variables': { |
190 'test_suite_name': 'ipc_perftests', | 192 'test_suite_name': 'ipc_perftests', |
191 }, | 193 }, |
192 'includes': [ '../build/apk_test.gypi' ], | 194 'includes': [ '../build/apk_test.gypi' ], |
193 }], | 195 }], |
194 }], | 196 }], |
195 ], | 197 ], |
196 } | 198 } |
OLD | NEW |