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

Side by Side Diff: ppapi/proxy/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 | « net/BUILD.gn ('k') | ppapi/shared_impl/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 6
7 config("proxy_implementation") { 7 config("proxy_implementation") {
8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] 8 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ]
9 } 9 }
10 10
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 "//gpu/ipc/common:command_buffer_traits", 351 "//gpu/ipc/common:command_buffer_traits",
352 "//ipc", 352 "//ipc",
353 "//ppapi/c", 353 "//ppapi/c",
354 "//ppapi/shared_impl", 354 "//ppapi/shared_impl",
355 ] 355 ]
356 if (!is_nacl) { 356 if (!is_nacl) {
357 deps += [ "//skia" ] 357 deps += [ "//skia" ]
358 } 358 }
359 } 359 }
360 360
361 source_set("test_support") { 361 static_library("test_support") {
362 testonly = true 362 testonly = true
363 363
364 sources = [ 364 sources = [
365 "ppapi_proxy_test.cc", 365 "ppapi_proxy_test.cc",
366 "ppapi_proxy_test.h", 366 "ppapi_proxy_test.h",
367 "resource_message_test_sink.cc", 367 "resource_message_test_sink.cc",
368 "resource_message_test_sink.h", 368 "resource_message_test_sink.h",
369 ] 369 ]
370 370
371 public_deps = [ 371 public_deps = [
372 ":proxy", 372 ":proxy",
373 ] 373 ]
374 deps = [ 374 deps = [
375 "//base/test:test_support", 375 "//base/test:test_support",
376 "//ipc", 376 "//ipc",
377 "//ipc:test_support", 377 "//ipc:test_support",
378 "//ppapi/proxy", 378 "//ppapi/proxy",
379 "//ppapi/shared_impl", 379 "//ppapi/shared_impl",
380 "//testing/gmock", 380 "//testing/gmock",
381 "//testing/gtest", 381 "//testing/gtest",
382 ] 382 ]
383 } 383 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | ppapi/shared_impl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698