Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: ipc/BUILD.gn

Issue 2151013002: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remoting Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/BUILD.gn ('k') | media/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « gpu/BUILD.gn ('k') | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698