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