| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/win:default_exe_manifest", | 412 "//build/win:default_exe_manifest", |
| 413 "//media", | 413 "//media", |
| 414 "//media/audio:test_support", |
| 414 "//net", | 415 "//net", |
| 415 "//ui/gfx/geometry", | 416 "//ui/gfx/geometry", |
| 416 ] | 417 ] |
| 417 | 418 |
| 418 if (is_linux && !is_chromeos && use_x11) { | 419 if (is_linux && !is_chromeos && use_x11) { |
| 419 sources += [ | 420 sources += [ |
| 420 "test/linux_output_window.cc", | 421 "test/linux_output_window.cc", |
| 421 "test/linux_output_window.h", | 422 "test/linux_output_window.h", |
| 422 ] | 423 ] |
| 423 configs += [ | 424 configs += [ |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 ":sender", | 544 ":sender", |
| 544 ] | 545 ] |
| 545 } | 546 } |
| 546 | 547 |
| 547 static_library("cast_receiver") { | 548 static_library("cast_receiver") { |
| 548 complete_static_lib = true | 549 complete_static_lib = true |
| 549 deps = [ | 550 deps = [ |
| 550 ":receiver", | 551 ":receiver", |
| 551 ] | 552 ] |
| 552 } | 553 } |
| OLD | NEW |