| 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 | 362 |
| 363 executable("generate_barcode_video") { | 363 executable("generate_barcode_video") { |
| 364 testonly = true | 364 testonly = true |
| 365 sources = [ | 365 sources = [ |
| 366 "test/utility/generate_barcode_video.cc", | 366 "test/utility/generate_barcode_video.cc", |
| 367 ] | 367 ] |
| 368 | 368 |
| 369 deps = [ | 369 deps = [ |
| 370 ":test_support", | 370 ":test_support", |
| 371 "//base", | 371 "//base", |
| 372 "//build/config/sanitizers:deps", |
| 372 "//media", | 373 "//media", |
| 373 ] | 374 ] |
| 374 } | 375 } |
| 375 | 376 |
| 376 executable("generate_timecode_audio") { | 377 executable("generate_timecode_audio") { |
| 377 testonly = true | 378 testonly = true |
| 378 sources = [ | 379 sources = [ |
| 379 "test/utility/generate_timecode_audio.cc", | 380 "test/utility/generate_timecode_audio.cc", |
| 380 ] | 381 ] |
| 381 | 382 |
| 382 deps = [ | 383 deps = [ |
| 383 ":test_support", | 384 ":test_support", |
| 384 "//base", | 385 "//base", |
| 386 "//build/config/sanitizers:deps", |
| 385 "//media", | 387 "//media", |
| 386 ] | 388 ] |
| 387 } | 389 } |
| 388 | 390 |
| 389 executable("udp_proxy") { | 391 executable("udp_proxy") { |
| 390 testonly = true | 392 testonly = true |
| 391 sources = [ | 393 sources = [ |
| 392 "test/utility/udp_proxy_main.cc", | 394 "test/utility/udp_proxy_main.cc", |
| 393 ] | 395 ] |
| 394 | 396 |
| 395 deps = [ | 397 deps = [ |
| 396 ":test_support", | 398 ":test_support", |
| 397 "//base", | 399 "//base", |
| 400 "//build/config/sanitizers:deps", |
| 398 "//net", | 401 "//net", |
| 399 ] | 402 ] |
| 400 } | 403 } |
| 401 | 404 |
| 402 if (is_linux && !is_chromeos) { | 405 if (is_linux && !is_chromeos) { |
| 403 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 406 # TODO(GYP): Figure out which of these work and are needed on other platforms. |
| 404 test("cast_benchmarks") { | 407 test("cast_benchmarks") { |
| 405 sources = [ | 408 sources = [ |
| 406 "test/cast_benchmarks.cc", | 409 "test/cast_benchmarks.cc", |
| 407 "test/fake_single_thread_task_runner.cc", | 410 "test/fake_single_thread_task_runner.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 427 "test/utility/tap_proxy.cc", | 430 "test/utility/tap_proxy.cc", |
| 428 ] | 431 ] |
| 429 | 432 |
| 430 deps = [ | 433 deps = [ |
| 431 ":test_support", | 434 ":test_support", |
| 432 "//base", | 435 "//base", |
| 433 "//media", | 436 "//media", |
| 434 ] | 437 ] |
| 435 } | 438 } |
| 436 } | 439 } |
| OLD | NEW |