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 import("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
9 | 9 |
10 component("ipc") { | 10 component("ipc") { |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 } | 199 } |
200 | 200 |
201 test("ipc_perftests") { | 201 test("ipc_perftests") { |
202 sources = [ | 202 sources = [ |
203 "ipc_mojo_perftest.cc", | 203 "ipc_mojo_perftest.cc", |
204 "run_all_perftests.cc", | 204 "run_all_perftests.cc", |
205 ] | 205 ] |
206 | 206 |
207 deps = [ | 207 deps = [ |
208 ":ipc", | 208 ":ipc", |
| 209 ":test_interfaces", |
209 ":test_support", | 210 ":test_support", |
210 "//base", | 211 "//base", |
211 "//base:i18n", | 212 "//base:i18n", |
212 "//base/test:test_support", | 213 "//base/test:test_support", |
213 "//mojo/edk/system", | 214 "//mojo/edk/system", |
214 "//mojo/edk/test:test_support", | 215 "//mojo/edk/test:test_support", |
| 216 "//mojo/edk/test:test_support_impl", |
215 "//testing/gtest", | 217 "//testing/gtest", |
216 ] | 218 ] |
217 } | 219 } |
218 | 220 |
219 static_library("test_support") { | 221 static_library("test_support") { |
220 testonly = true | 222 testonly = true |
221 sources = [ | 223 sources = [ |
222 "ipc_perftest_support.cc", | |
223 "ipc_perftest_support.h", | |
224 "ipc_security_test_util.cc", | 224 "ipc_security_test_util.cc", |
225 "ipc_security_test_util.h", | 225 "ipc_security_test_util.h", |
226 "ipc_test_base.cc", | 226 "ipc_test_base.cc", |
227 "ipc_test_base.h", | 227 "ipc_test_base.h", |
228 "ipc_test_channel_listener.cc", | 228 "ipc_test_channel_listener.cc", |
229 "ipc_test_channel_listener.h", | 229 "ipc_test_channel_listener.h", |
230 "ipc_test_sink.cc", | 230 "ipc_test_sink.cc", |
231 "ipc_test_sink.h", | 231 "ipc_test_sink.h", |
232 ] | 232 ] |
233 public_deps = [ | 233 public_deps = [ |
234 ":ipc", | 234 ":ipc", |
235 ] | 235 ] |
236 deps = [ | 236 deps = [ |
237 "//base", | 237 "//base", |
238 "//base/test:test_support", | 238 "//base/test:test_support", |
239 "//mojo/edk/test:test_support", | 239 "//mojo/edk/test:test_support", |
240 "//testing/gtest", | 240 "//testing/gtest", |
241 ] | 241 ] |
242 } | 242 } |
243 } | 243 } |
OLD | NEW |