| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 source_set("test_support") { | 355 source_set("test_support") { |
| 356 testonly = true | 356 testonly = true |
| 357 | 357 |
| 358 sources = [ | 358 sources = [ |
| 359 "ppapi_proxy_test.cc", | 359 "ppapi_proxy_test.cc", |
| 360 "ppapi_proxy_test.h", | 360 "ppapi_proxy_test.h", |
| 361 "resource_message_test_sink.cc", | 361 "resource_message_test_sink.cc", |
| 362 "resource_message_test_sink.h", | 362 "resource_message_test_sink.h", |
| 363 ] | 363 ] |
| 364 | 364 |
| 365 public_deps = [ | |
| 366 ":proxy", | |
| 367 ] | |
| 368 deps = [ | 365 deps = [ |
| 369 "//base/test:test_support", | 366 "//base/test:test_support", |
| 370 "//ipc", | 367 "//ipc", |
| 371 "//ipc:test_support", | 368 "//ipc:test_support", |
| 372 "//ppapi/proxy", | 369 "//ppapi/proxy", |
| 373 "//ppapi/shared_impl", | 370 "//ppapi/shared_impl", |
| 374 "//testing/gmock", | 371 "//testing/gmock", |
| 375 "//testing/gtest", | 372 "//testing/gtest", |
| 376 ] | 373 ] |
| 377 } | 374 } |
| OLD | NEW |