| 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/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 } | 473 } |
| 474 | 474 |
| 475 executable("generate_barcode_video") { | 475 executable("generate_barcode_video") { |
| 476 testonly = true | 476 testonly = true |
| 477 sources = [ | 477 sources = [ |
| 478 "test/utility/generate_barcode_video.cc", | 478 "test/utility/generate_barcode_video.cc", |
| 479 ] | 479 ] |
| 480 deps = [ | 480 deps = [ |
| 481 ":test_support", | 481 ":test_support", |
| 482 "//base", | 482 "//base", |
| 483 "//build/config/sanitizers:deps", | 483 "//build/config:exe_and_shlib_deps", |
| 484 "//build/win:default_exe_manifest", | 484 "//build/win:default_exe_manifest", |
| 485 "//media", | 485 "//media", |
| 486 ] | 486 ] |
| 487 } | 487 } |
| 488 | 488 |
| 489 executable("generate_timecode_audio") { | 489 executable("generate_timecode_audio") { |
| 490 testonly = true | 490 testonly = true |
| 491 sources = [ | 491 sources = [ |
| 492 "test/utility/generate_timecode_audio.cc", | 492 "test/utility/generate_timecode_audio.cc", |
| 493 ] | 493 ] |
| 494 deps = [ | 494 deps = [ |
| 495 ":test_support", | 495 ":test_support", |
| 496 "//base", | 496 "//base", |
| 497 "//build/config/sanitizers:deps", | 497 "//build/config:exe_and_shlib_deps", |
| 498 "//build/win:default_exe_manifest", | 498 "//build/win:default_exe_manifest", |
| 499 "//media", | 499 "//media", |
| 500 ] | 500 ] |
| 501 } | 501 } |
| 502 | 502 |
| 503 executable("udp_proxy") { | 503 executable("udp_proxy") { |
| 504 testonly = true | 504 testonly = true |
| 505 sources = [ | 505 sources = [ |
| 506 "test/utility/udp_proxy_main.cc", | 506 "test/utility/udp_proxy_main.cc", |
| 507 ] | 507 ] |
| 508 deps = [ | 508 deps = [ |
| 509 ":test_support", | 509 ":test_support", |
| 510 "//base", | 510 "//base", |
| 511 "//build/config/sanitizers:deps", | 511 "//build/config:exe_and_shlib_deps", |
| 512 "//build/win:default_exe_manifest", | 512 "//build/win:default_exe_manifest", |
| 513 "//net", | 513 "//net", |
| 514 ] | 514 ] |
| 515 } | 515 } |
| 516 } else { # !(is_win || is_mac || (is_linux && !is_chromeos)) | 516 } else { # !(is_win || is_mac || (is_linux && !is_chromeos)) |
| 517 # The testing tools are only built for the desktop platforms. | 517 # The testing tools are only built for the desktop platforms. |
| 518 group("testing_tools") { | 518 group("testing_tools") { |
| 519 } | 519 } |
| 520 } | 520 } |
| 521 | 521 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 544 ":sender", | 544 ":sender", |
| 545 ] | 545 ] |
| 546 } | 546 } |
| 547 | 547 |
| 548 static_library("cast_receiver") { | 548 static_library("cast_receiver") { |
| 549 complete_static_lib = true | 549 complete_static_lib = true |
| 550 deps = [ | 550 deps = [ |
| 551 ":receiver", | 551 ":receiver", |
| 552 ] | 552 ] |
| 553 } | 553 } |
| OLD | NEW |