| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 test("cast_unittests") { | 252 test("cast_unittests") { |
| 253 sources = [ | 253 sources = [ |
| 254 "logging/encoding_event_subscriber_unittest.cc", | 254 "logging/encoding_event_subscriber_unittest.cc", |
| 255 "logging/serialize_deserialize_test.cc", | 255 "logging/serialize_deserialize_test.cc", |
| 256 "logging/logging_impl_unittest.cc", | 256 "logging/logging_impl_unittest.cc", |
| 257 "logging/logging_raw_unittest.cc", | 257 "logging/logging_raw_unittest.cc", |
| 258 "logging/receiver_time_offset_estimator_impl_unittest.cc", | 258 "logging/receiver_time_offset_estimator_impl_unittest.cc", |
| 259 "logging/simple_event_subscriber_unittest.cc", | 259 "logging/simple_event_subscriber_unittest.cc", |
| 260 "logging/stats_event_subscriber_unittest.cc", | 260 "logging/stats_event_subscriber_unittest.cc", |
| 261 "net/cast_transport_sender_impl_unittest.cc", | 261 "net/cast_transport_sender_impl_unittest.cc", |
| 262 "net/mock_cast_transport_sender.cc", |
| 263 "net/mock_cast_transport_sender.h", |
| 262 "net/pacing/mock_paced_packet_sender.cc", | 264 "net/pacing/mock_paced_packet_sender.cc", |
| 263 "net/pacing/mock_paced_packet_sender.h", | 265 "net/pacing/mock_paced_packet_sender.h", |
| 264 "net/pacing/paced_sender_unittest.cc", | 266 "net/pacing/paced_sender_unittest.cc", |
| 265 "net/rtcp/rtcp_builder_unittest.cc", | 267 "net/rtcp/rtcp_builder_unittest.cc", |
| 266 "net/rtcp/rtcp_unittest.cc", | 268 "net/rtcp/rtcp_unittest.cc", |
| 267 "net/rtcp/rtcp_utility_unittest.cc", | 269 "net/rtcp/rtcp_utility_unittest.cc", |
| 268 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc", | 270 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc", |
| 269 | 271 |
| 270 # TODO(miu): The following two are test utility modules. Rename/move the fi
les. | 272 # TODO(miu): The following two are test utility modules. Rename/move the fi
les. |
| 271 "net/rtcp/test_rtcp_packet_builder.cc", | 273 "net/rtcp/test_rtcp_packet_builder.cc", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 sources = [ | 364 sources = [ |
| 363 "test/utility/udp_proxy_main.cc", | 365 "test/utility/udp_proxy_main.cc", |
| 364 ] | 366 ] |
| 365 | 367 |
| 366 deps = [ | 368 deps = [ |
| 367 ":test_support", | 369 ":test_support", |
| 368 "//base", | 370 "//base", |
| 369 "//net", | 371 "//net", |
| 370 ] | 372 ] |
| 371 } | 373 } |
| OLD | NEW |