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 ":sender", | 9 ":sender", |
10 ":receiver", | 10 ":receiver", |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 test("cast_unittests") { | 278 test("cast_unittests") { |
279 sources = [ | 279 sources = [ |
280 "logging/encoding_event_subscriber_unittest.cc", | 280 "logging/encoding_event_subscriber_unittest.cc", |
281 "logging/logging_impl_unittest.cc", | 281 "logging/logging_impl_unittest.cc", |
282 "logging/logging_raw_unittest.cc", | 282 "logging/logging_raw_unittest.cc", |
283 "logging/receiver_time_offset_estimator_impl_unittest.cc", | 283 "logging/receiver_time_offset_estimator_impl_unittest.cc", |
284 "logging/serialize_deserialize_test.cc", | 284 "logging/serialize_deserialize_test.cc", |
285 "logging/simple_event_subscriber_unittest.cc", | 285 "logging/simple_event_subscriber_unittest.cc", |
286 "logging/stats_event_subscriber_unittest.cc", | 286 "logging/stats_event_subscriber_unittest.cc", |
287 "net/cast_transport_sender_impl_unittest.cc", | 287 "net/cast_transport_sender_impl_unittest.cc", |
| 288 "net/frame_id_wrap_helper_test.cc", |
288 "net/mock_cast_transport_sender.cc", | 289 "net/mock_cast_transport_sender.cc", |
289 "net/mock_cast_transport_sender.h", | 290 "net/mock_cast_transport_sender.h", |
290 "net/pacing/mock_paced_packet_sender.cc", | 291 "net/pacing/mock_paced_packet_sender.cc", |
291 "net/pacing/mock_paced_packet_sender.h", | 292 "net/pacing/mock_paced_packet_sender.h", |
292 "net/pacing/paced_sender_unittest.cc", | 293 "net/pacing/paced_sender_unittest.cc", |
293 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc", | 294 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc", |
294 "net/rtcp/rtcp_builder_unittest.cc", | 295 "net/rtcp/rtcp_builder_unittest.cc", |
295 "net/rtcp/rtcp_unittest.cc", | 296 "net/rtcp/rtcp_unittest.cc", |
296 "net/rtcp/rtcp_utility_unittest.cc", | 297 "net/rtcp/rtcp_utility_unittest.cc", |
297 | 298 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 "test/utility/tap_proxy.cc", | 426 "test/utility/tap_proxy.cc", |
426 ] | 427 ] |
427 | 428 |
428 deps = [ | 429 deps = [ |
429 ":test_support", | 430 ":test_support", |
430 "//base", | 431 "//base", |
431 "//media", | 432 "//media", |
432 ] | 433 ] |
433 } | 434 } |
434 } | 435 } |
OLD | NEW |