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 ] |
365 deps = [ | 368 deps = [ |
366 "//base/test:test_support", | 369 "//base/test:test_support", |
367 "//ipc", | 370 "//ipc", |
368 "//ipc:test_support", | 371 "//ipc:test_support", |
369 "//ppapi/proxy", | 372 "//ppapi/proxy", |
370 "//ppapi/shared_impl", | 373 "//ppapi/shared_impl", |
371 "//testing/gmock", | 374 "//testing/gmock", |
372 "//testing/gtest", | 375 "//testing/gtest", |
373 ] | 376 ] |
374 } | 377 } |
OLD | NEW |