| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 'target_name': 'test_support_ipc', | 123 'target_name': 'test_support_ipc', |
| 124 'type': 'static_library', | 124 'type': 'static_library', |
| 125 'dependencies': [ | 125 'dependencies': [ |
| 126 'ipc', | 126 'ipc', |
| 127 '../base/base.gyp:base', | 127 '../base/base.gyp:base', |
| 128 '../testing/gtest.gyp:gtest', | 128 '../testing/gtest.gyp:gtest', |
| 129 ], | 129 ], |
| 130 'sources': [ | 130 'sources': [ |
| 131 'ipc_multiprocess_test.cc', | 131 'ipc_multiprocess_test.cc', |
| 132 'ipc_multiprocess_test.h', | 132 'ipc_multiprocess_test.h', |
| 133 'ipc_perftest_support.cc', |
| 134 'ipc_perftest_support.h', |
| 133 'ipc_test_base.cc', | 135 'ipc_test_base.cc', |
| 134 'ipc_test_base.h', | 136 'ipc_test_base.h', |
| 135 'ipc_test_channel_listener.cc', | 137 'ipc_test_channel_listener.cc', |
| 136 'ipc_test_channel_listener.h', | 138 'ipc_test_channel_listener.h', |
| 137 'ipc_test_sink.cc', | 139 'ipc_test_sink.cc', |
| 138 'ipc_test_sink.h', | 140 'ipc_test_sink.h', |
| 139 ], | 141 ], |
| 140 }, | 142 }, |
| 141 ], | 143 ], |
| 142 'conditions': [ | 144 'conditions': [ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 'ipc_perftests', | 191 'ipc_perftests', |
| 190 ], | 192 ], |
| 191 'variables': { | 193 'variables': { |
| 192 'test_suite_name': 'ipc_perftests', | 194 'test_suite_name': 'ipc_perftests', |
| 193 }, | 195 }, |
| 194 'includes': [ '../build/apk_test.gypi' ], | 196 'includes': [ '../build/apk_test.gypi' ], |
| 195 }], | 197 }], |
| 196 }], | 198 }], |
| 197 ], | 199 ], |
| 198 } | 200 } |
| OLD | NEW |