| 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 component("cast") { | 5 component("cast") { |
| 6 deps = [ | 6 deps = [ |
| 7 ":sender", | 7 ":sender", |
| 8 ":receiver", | 8 ":receiver", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "logging/raw_event_subscriber_bundle.h", | 38 "logging/raw_event_subscriber_bundle.h", |
| 39 "logging/receiver_time_offset_estimator.h", | 39 "logging/receiver_time_offset_estimator.h", |
| 40 "logging/receiver_time_offset_estimator_impl.cc", | 40 "logging/receiver_time_offset_estimator_impl.cc", |
| 41 "logging/receiver_time_offset_estimator_impl.h", | 41 "logging/receiver_time_offset_estimator_impl.h", |
| 42 "logging/simple_event_subscriber.cc", | 42 "logging/simple_event_subscriber.cc", |
| 43 "logging/simple_event_subscriber.h", | 43 "logging/simple_event_subscriber.h", |
| 44 "logging/stats_event_subscriber.cc", | 44 "logging/stats_event_subscriber.cc", |
| 45 "logging/stats_event_subscriber.h", | 45 "logging/stats_event_subscriber.h", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 public_deps = [ |
| 49 "//media/cast/logging/proto", |
| 50 ] |
| 48 deps = [ | 51 deps = [ |
| 49 "//base", | 52 "//base", |
| 50 "//crypto", | 53 "//crypto", |
| 51 "//media/cast/logging/proto", | |
| 52 "//net", | 54 "//net", |
| 53 ] | 55 ] |
| 54 | |
| 55 forward_dependent_configs_from = [ | |
| 56 "//media/cast/logging/proto", | |
| 57 ] | |
| 58 } | 56 } |
| 59 | 57 |
| 60 source_set("net") { | 58 source_set("net") { |
| 61 sources = [ | 59 sources = [ |
| 62 "net/cast_transport_config.cc", | 60 "net/cast_transport_config.cc", |
| 63 "net/cast_transport_config.h", | 61 "net/cast_transport_config.h", |
| 64 "net/cast_transport_defines.h", | 62 "net/cast_transport_defines.h", |
| 65 "net/cast_transport_sender.h", | 63 "net/cast_transport_sender.h", |
| 66 "net/cast_transport_sender_impl.cc", | 64 "net/cast_transport_sender_impl.cc", |
| 67 "net/cast_transport_sender_impl.h", | 65 "net/cast_transport_sender_impl.h", |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 sources = [ | 333 sources = [ |
| 336 "test/utility/udp_proxy_main.cc", | 334 "test/utility/udp_proxy_main.cc", |
| 337 ] | 335 ] |
| 338 | 336 |
| 339 deps = [ | 337 deps = [ |
| 340 ":test_support", | 338 ":test_support", |
| 341 "//base", | 339 "//base", |
| 342 "//net", | 340 "//net", |
| 343 ] | 341 ] |
| 344 } | 342 } |
| OLD | NEW |