| 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 ":receiver", |
| 9 ":sender", | 10 ":sender", |
| 10 ":receiver", | |
| 11 ] | 11 ] |
| 12 } | 12 } |
| 13 | 13 |
| 14 # Common code shared by all cast components. | 14 # Common code shared by all cast components. |
| 15 source_set("common") { | 15 source_set("common") { |
| 16 sources = [ | 16 sources = [ |
| 17 "cast_config.cc", | 17 "cast_config.cc", |
| 18 "cast_config.h", | 18 "cast_config.h", |
| 19 "cast_defines.h", | 19 "cast_defines.h", |
| 20 "cast_environment.cc", | 20 "cast_environment.cc", |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 "test/utility/tap_proxy.cc", | 429 "test/utility/tap_proxy.cc", |
| 430 ] | 430 ] |
| 431 | 431 |
| 432 deps = [ | 432 deps = [ |
| 433 ":test_support", | 433 ":test_support", |
| 434 "//base", | 434 "//base", |
| 435 "//media", | 435 "//media", |
| 436 ] | 436 ] |
| 437 } | 437 } |
| 438 } | 438 } |
| OLD | NEW |