| Index: media/cast/BUILD.gn
|
| diff --git a/media/cast/BUILD.gn b/media/cast/BUILD.gn
|
| index ec91639cd487917bf2a2b9e77dd2469fd58f0883..2262c7b6cbc5f3e6d78c2c0712002865fc0681d9 100644
|
| --- a/media/cast/BUILD.gn
|
| +++ b/media/cast/BUILD.gn
|
| @@ -376,3 +376,39 @@ executable("udp_proxy") {
|
| "//net",
|
| ]
|
| }
|
| +
|
| +if (is_linux && !is_chromeos) {
|
| + # TODO(GYP): Figure out which of these work and are needed on other platforms.
|
| + test("cast_benchmarks") {
|
| + sources = [
|
| + "test/cast_benchmarks.cc",
|
| + "test/fake_single_thread_task_runner.cc",
|
| + "test/fake_single_thread_task_runner.h",
|
| + "test/utility/test_util.cc",
|
| + "test/utility/test_util.h",
|
| + ]
|
| +
|
| + deps = [
|
| + ":common",
|
| + ":net",
|
| + ":receiver",
|
| + ":sender",
|
| + ":test_support",
|
| + "//base/test:test_support",
|
| + "//net",
|
| + "//testing/gtest",
|
| + ]
|
| + }
|
| +
|
| + test("tap_proxy") {
|
| + sources = [
|
| + "test/utility/tap_proxy.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + ":test_support",
|
| + "//base",
|
| + "//media",
|
| + ]
|
| + }
|
| +}
|
|
|