| 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("//build/config/features.gni") |
| 5 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 6 | 7 |
| 7 component("cast") { | 8 component("cast") { |
| 8 deps = [ | 9 deps = [ |
| 9 ":sender", | 10 ":sender", |
| 10 ":receiver", | 11 ":receiver", |
| 11 ] | 12 ] |
| 12 } | 13 } |
| 13 | 14 |
| 14 # Common code shared by all cast components. | 15 # Common code shared by all cast components. |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 "test/utility/udp_proxy_main.cc", | 391 "test/utility/udp_proxy_main.cc", |
| 391 ] | 392 ] |
| 392 | 393 |
| 393 deps = [ | 394 deps = [ |
| 394 ":test_support", | 395 ":test_support", |
| 395 "//base", | 396 "//base", |
| 396 "//net", | 397 "//net", |
| 397 ] | 398 ] |
| 398 } | 399 } |
| 399 | 400 |
| 400 if (is_linux && !is_chromeos) { | 401 if (is_linux && !use_cros_fe) { |
| 401 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 402 # TODO(GYP): Figure out which of these work and are needed on other platforms. |
| 402 test("cast_benchmarks") { | 403 test("cast_benchmarks") { |
| 403 sources = [ | 404 sources = [ |
| 404 "test/cast_benchmarks.cc", | 405 "test/cast_benchmarks.cc", |
| 405 "test/fake_single_thread_task_runner.cc", | 406 "test/fake_single_thread_task_runner.cc", |
| 406 "test/fake_single_thread_task_runner.h", | 407 "test/fake_single_thread_task_runner.h", |
| 407 "test/utility/test_util.cc", | 408 "test/utility/test_util.cc", |
| 408 "test/utility/test_util.h", | 409 "test/utility/test_util.h", |
| 409 ] | 410 ] |
| 410 | 411 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 425 "test/utility/tap_proxy.cc", | 426 "test/utility/tap_proxy.cc", |
| 426 ] | 427 ] |
| 427 | 428 |
| 428 deps = [ | 429 deps = [ |
| 429 ":test_support", | 430 ":test_support", |
| 430 "//base", | 431 "//base", |
| 431 "//media", | 432 "//media", |
| 432 ] | 433 ] |
| 433 } | 434 } |
| 434 } | 435 } |
| OLD | NEW |