| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 ":test_support", | 275 ":test_support", |
| 276 "//base", | 276 "//base", |
| 277 "//base:i18n", | 277 "//base:i18n", |
| 278 "//base/test:test_support", | 278 "//base/test:test_support", |
| 279 "//mojo/edk/system", | 279 "//mojo/edk/system", |
| 280 "//mojo/edk/test:test_support", | 280 "//mojo/edk/test:test_support", |
| 281 "//testing/gtest", | 281 "//testing/gtest", |
| 282 ] | 282 ] |
| 283 } | 283 } |
| 284 | 284 |
| 285 source_set("test_support") { | 285 static_library("test_support") { |
| 286 testonly = true | 286 testonly = true |
| 287 sources = [ | 287 sources = [ |
| 288 "ipc_multiprocess_test.cc", | 288 "ipc_multiprocess_test.cc", |
| 289 "ipc_multiprocess_test.h", | 289 "ipc_multiprocess_test.h", |
| 290 "ipc_perftest_support.cc", | 290 "ipc_perftest_support.cc", |
| 291 "ipc_perftest_support.h", | 291 "ipc_perftest_support.h", |
| 292 "ipc_security_test_util.cc", | 292 "ipc_security_test_util.cc", |
| 293 "ipc_security_test_util.h", | 293 "ipc_security_test_util.h", |
| 294 "ipc_test_base.cc", | 294 "ipc_test_base.cc", |
| 295 "ipc_test_base.h", | 295 "ipc_test_base.h", |
| 296 "ipc_test_channel_listener.cc", | 296 "ipc_test_channel_listener.cc", |
| 297 "ipc_test_channel_listener.h", | 297 "ipc_test_channel_listener.h", |
| 298 "ipc_test_sink.cc", | 298 "ipc_test_sink.cc", |
| 299 "ipc_test_sink.h", | 299 "ipc_test_sink.h", |
| 300 "test_util_mac.cc", | 300 "test_util_mac.cc", |
| 301 "test_util_mac.h", | 301 "test_util_mac.h", |
| 302 ] | 302 ] |
| 303 public_deps = [ | 303 public_deps = [ |
| 304 ":ipc", | 304 ":ipc", |
| 305 ] | 305 ] |
| 306 deps = [ | 306 deps = [ |
| 307 "//base", | 307 "//base", |
| 308 "//base/test:test_support", | 308 "//base/test:test_support", |
| 309 "//testing/gtest", | 309 "//testing/gtest", |
| 310 ] | 310 ] |
| 311 } | 311 } |
| 312 } | 312 } |
| OLD | NEW |