| 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 testonly = true | 402 testonly = true |
| 403 sources = [ | 403 sources = [ |
| 404 "test/receiver.cc", | 404 "test/receiver.cc", |
| 405 ] | 405 ] |
| 406 deps = [ | 406 deps = [ |
| 407 ":common", | 407 ":common", |
| 408 ":net", | 408 ":net", |
| 409 ":receiver", | 409 ":receiver", |
| 410 ":test_support", | 410 ":test_support", |
| 411 "//base", | 411 "//base", |
| 412 "//build/config:exe_and_shlib_deps", |
| 412 "//build/win:default_exe_manifest", | 413 "//build/win:default_exe_manifest", |
| 413 "//media", | 414 "//media", |
| 414 "//media/audio:test_support", | 415 "//media/audio:test_support", |
| 415 "//net", | 416 "//net", |
| 416 "//ui/gfx/geometry", | 417 "//ui/gfx/geometry", |
| 417 ] | 418 ] |
| 418 | 419 |
| 419 if (is_linux && !is_chromeos && use_x11) { | 420 if (is_linux && !is_chromeos && use_x11) { |
| 420 sources += [ | 421 sources += [ |
| 421 "test/linux_output_window.cc", | 422 "test/linux_output_window.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 433 testonly = true | 434 testonly = true |
| 434 sources = [ | 435 sources = [ |
| 435 "test/sender.cc", | 436 "test/sender.cc", |
| 436 ] | 437 ] |
| 437 deps = [ | 438 deps = [ |
| 438 ":common", | 439 ":common", |
| 439 ":net", | 440 ":net", |
| 440 ":sender", | 441 ":sender", |
| 441 ":test_support", | 442 ":test_support", |
| 442 "//base", | 443 "//base", |
| 444 "//build/config:exe_and_shlib_deps", |
| 443 "//build/win:default_exe_manifest", | 445 "//build/win:default_exe_manifest", |
| 444 "//media", | 446 "//media", |
| 445 ] | 447 ] |
| 446 } | 448 } |
| 447 | 449 |
| 448 proto_library("network_simulation_model_proto") { | 450 proto_library("network_simulation_model_proto") { |
| 449 visibility = [ ":cast_simulator" ] | 451 visibility = [ ":cast_simulator" ] |
| 450 sources = [ | 452 sources = [ |
| 451 "test/proto/network_simulation_model.proto", | 453 "test/proto/network_simulation_model.proto", |
| 452 ] | 454 ] |
| 453 } | 455 } |
| 454 | 456 |
| 455 executable("cast_simulator") { | 457 executable("cast_simulator") { |
| 456 testonly = true | 458 testonly = true |
| 457 sources = [ | 459 sources = [ |
| 458 "test/simulator.cc", | 460 "test/simulator.cc", |
| 459 ] | 461 ] |
| 460 deps = [ | 462 deps = [ |
| 461 ":common", | 463 ":common", |
| 462 ":net", | 464 ":net", |
| 463 ":network_simulation_model_proto", | 465 ":network_simulation_model_proto", |
| 464 ":receiver", | 466 ":receiver", |
| 465 ":sender", | 467 ":sender", |
| 466 ":test_support", | 468 ":test_support", |
| 467 "//base", | 469 "//base", |
| 468 "//base/test:test_support", | 470 "//base/test:test_support", |
| 471 "//build/config:exe_and_shlib_deps", |
| 469 "//build/win:default_exe_manifest", | 472 "//build/win:default_exe_manifest", |
| 470 "//media", | 473 "//media", |
| 471 "//media/base:test_support", | 474 "//media/base:test_support", |
| 472 ] | 475 ] |
| 473 } | 476 } |
| 474 | 477 |
| 475 executable("generate_barcode_video") { | 478 executable("generate_barcode_video") { |
| 476 testonly = true | 479 testonly = true |
| 477 sources = [ | 480 sources = [ |
| 478 "test/utility/generate_barcode_video.cc", | 481 "test/utility/generate_barcode_video.cc", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 ":sender", | 547 ":sender", |
| 545 ] | 548 ] |
| 546 } | 549 } |
| 547 | 550 |
| 548 static_library("cast_receiver") { | 551 static_library("cast_receiver") { |
| 549 complete_static_lib = true | 552 complete_static_lib = true |
| 550 deps = [ | 553 deps = [ |
| 551 ":receiver", | 554 ":receiver", |
| 552 ] | 555 ] |
| 553 } | 556 } |
| OLD | NEW |