OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cast") { | 7 component("cast") { |
8 deps = [ | 8 deps = [ |
9 ":sender", | 9 ":sender", |
10 ":receiver", | 10 ":receiver", |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 sources = [ | 369 sources = [ |
370 "test/utility/udp_proxy_main.cc", | 370 "test/utility/udp_proxy_main.cc", |
371 ] | 371 ] |
372 | 372 |
373 deps = [ | 373 deps = [ |
374 ":test_support", | 374 ":test_support", |
375 "//base", | 375 "//base", |
376 "//net", | 376 "//net", |
377 ] | 377 ] |
378 } | 378 } |
| 379 |
| 380 if (is_linux && !is_chromeos) { |
| 381 # TODO(GYP): Figure out which of these work and are needed on other platforms. |
| 382 test("cast_benchmarks") { |
| 383 sources = [ |
| 384 "test/cast_benchmarks.cc", |
| 385 "test/fake_single_thread_task_runner.cc", |
| 386 "test/fake_single_thread_task_runner.h", |
| 387 "test/utility/test_util.cc", |
| 388 "test/utility/test_util.h", |
| 389 ] |
| 390 |
| 391 deps = [ |
| 392 ":common", |
| 393 ":net", |
| 394 ":receiver", |
| 395 ":sender", |
| 396 ":test_support", |
| 397 "//base/test:test_support", |
| 398 "//net", |
| 399 "//testing/gtest", |
| 400 ] |
| 401 } |
| 402 |
| 403 test("tap_proxy") { |
| 404 sources = [ |
| 405 "test/utility/tap_proxy.cc", |
| 406 ] |
| 407 |
| 408 deps = [ |
| 409 ":test_support", |
| 410 "//base", |
| 411 "//media", |
| 412 ] |
| 413 } |
| 414 } |
OLD | NEW |