| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |