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 30 matching lines...) Expand all Loading... |
41 '../testing/gtest.gyp:gtest', | 41 '../testing/gtest.gyp:gtest', |
42 ], | 42 ], |
43 'include_dirs': [ | 43 'include_dirs': [ |
44 '..' | 44 '..' |
45 ], | 45 ], |
46 'sources': [ | 46 'sources': [ |
47 'file_descriptor_set_posix_unittest.cc', | 47 'file_descriptor_set_posix_unittest.cc', |
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_forwarding_message_filter_unittest.cc', |
51 'ipc_fuzzing_tests.cc', | 52 'ipc_fuzzing_tests.cc', |
52 'ipc_message_unittest.cc', | 53 'ipc_message_unittest.cc', |
53 'ipc_message_utils_unittest.cc', | 54 'ipc_message_utils_unittest.cc', |
54 'ipc_send_fds_test.cc', | 55 'ipc_send_fds_test.cc', |
55 'ipc_sync_channel_unittest.cc', | 56 'ipc_sync_channel_unittest.cc', |
56 'ipc_sync_message_unittest.cc', | 57 'ipc_sync_message_unittest.cc', |
57 'ipc_sync_message_unittest.h', | 58 'ipc_sync_message_unittest.h', |
58 'run_all_unittests.cc', | 59 'run_all_unittests.cc', |
59 'sync_socket_unittest.cc', | 60 'sync_socket_unittest.cc', |
60 'unix_domain_socket_util_unittest.cc', | 61 'unix_domain_socket_util_unittest.cc', |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 'ipc_perftests', | 192 'ipc_perftests', |
192 ], | 193 ], |
193 'variables': { | 194 'variables': { |
194 'test_suite_name': 'ipc_perftests', | 195 'test_suite_name': 'ipc_perftests', |
195 }, | 196 }, |
196 'includes': [ '../build/apk_test.gypi' ], | 197 'includes': [ '../build/apk_test.gypi' ], |
197 }], | 198 }], |
198 }], | 199 }], |
199 ], | 200 ], |
200 } | 201 } |
OLD | NEW |