| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "//media", | 196 "//media", |
| 197 "//third_party/libvpx", | 197 "//third_party/libvpx", |
| 198 "//third_party/opus", | 198 "//third_party/opus", |
| 199 ] | 199 ] |
| 200 } | 200 } |
| 201 } | 201 } |
| 202 | 202 |
| 203 source_set("test_support") { | 203 source_set("test_support") { |
| 204 testonly = true | 204 testonly = true |
| 205 sources = [ | 205 sources = [ |
| 206 # TODO(hclam): FFmpeg. | 206 # TODO(hclam): FFmpeg. |
| 207 # "test/fake_media_source.cc", | 207 # "test/fake_media_source.cc", |
| 208 # "test/fake_media_source.h", | 208 # "test/fake_media_source.h", |
| 209 "test/fake_single_thread_task_runner.cc", | 209 "test/fake_single_thread_task_runner.cc", |
| 210 "test/fake_single_thread_task_runner.h", | 210 "test/fake_single_thread_task_runner.h", |
| 211 "test/skewed_single_thread_task_runner.cc", | 211 "test/skewed_single_thread_task_runner.cc", |
| 212 "test/skewed_single_thread_task_runner.h", | 212 "test/skewed_single_thread_task_runner.h", |
| 213 "test/skewed_tick_clock.cc", | 213 "test/skewed_tick_clock.cc", |
| 214 "test/skewed_tick_clock.h", | 214 "test/skewed_tick_clock.h", |
| 215 "test/loopback_transport.cc", | 215 "test/loopback_transport.cc", |
| 216 "test/loopback_transport.h", | 216 "test/loopback_transport.h", |
| 217 "test/utility/audio_utility.cc", | 217 "test/utility/audio_utility.cc", |
| 218 "test/utility/audio_utility.h", | 218 "test/utility/audio_utility.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 232 "test/utility/video_utility.h", | 232 "test/utility/video_utility.h", |
| 233 "test/utility/udp_proxy.cc", | 233 "test/utility/udp_proxy.cc", |
| 234 "test/utility/udp_proxy.h", | 234 "test/utility/udp_proxy.h", |
| 235 ] | 235 ] |
| 236 | 236 |
| 237 deps = [ | 237 deps = [ |
| 238 ":net", | 238 ":net", |
| 239 ":receiver", | 239 ":receiver", |
| 240 "//base/test:test_support", | 240 "//base/test:test_support", |
| 241 "//testing/gtest", | 241 "//testing/gtest", |
| 242 # TODO(hclam): Does not build on ARM yet. | 242 |
| 243 # "//third_party/ffmpeg", | 243 # TODO(hclam): Does not build on ARM yet. |
| 244 # "//third_party/ffmpeg", |
| 244 "//third_party/libyuv", | 245 "//third_party/libyuv", |
| 245 "//third_party/mt19937ar", | 246 "//third_party/mt19937ar", |
| 246 "//ui/gfx", | 247 "//ui/gfx", |
| 247 "//ui/gfx/geometry", | 248 "//ui/gfx/geometry", |
| 248 ] | 249 ] |
| 249 } | 250 } |
| 250 | 251 |
| 251 test("cast_unittests") { | 252 test("cast_unittests") { |
| 252 sources = [ | 253 sources = [ |
| 253 "logging/encoding_event_subscriber_unittest.cc", | 254 "logging/encoding_event_subscriber_unittest.cc", |
| 254 "logging/serialize_deserialize_test.cc", | 255 "logging/serialize_deserialize_test.cc", |
| 255 "logging/logging_impl_unittest.cc", | 256 "logging/logging_impl_unittest.cc", |
| 256 "logging/logging_raw_unittest.cc", | 257 "logging/logging_raw_unittest.cc", |
| 257 "logging/receiver_time_offset_estimator_impl_unittest.cc", | 258 "logging/receiver_time_offset_estimator_impl_unittest.cc", |
| 258 "logging/simple_event_subscriber_unittest.cc", | 259 "logging/simple_event_subscriber_unittest.cc", |
| 259 "logging/stats_event_subscriber_unittest.cc", | 260 "logging/stats_event_subscriber_unittest.cc", |
| 260 "net/cast_transport_sender_impl_unittest.cc", | 261 "net/cast_transport_sender_impl_unittest.cc", |
| 261 "net/pacing/mock_paced_packet_sender.cc", | 262 "net/pacing/mock_paced_packet_sender.cc", |
| 262 "net/pacing/mock_paced_packet_sender.h", | 263 "net/pacing/mock_paced_packet_sender.h", |
| 263 "net/pacing/paced_sender_unittest.cc", | 264 "net/pacing/paced_sender_unittest.cc", |
| 264 "net/rtcp/rtcp_builder_unittest.cc", | 265 "net/rtcp/rtcp_builder_unittest.cc", |
| 265 "net/rtcp/rtcp_unittest.cc", | 266 "net/rtcp/rtcp_unittest.cc", |
| 266 "net/rtcp/rtcp_utility_unittest.cc", | 267 "net/rtcp/rtcp_utility_unittest.cc", |
| 267 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc", | 268 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc", |
| 268 # TODO(miu): The following two are test utility modules. Rename/move the files. | 269 |
| 270 # TODO(miu): The following two are test utility modules. Rename/move the fi
les. |
| 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", |
| 271 "net/rtp/cast_message_builder_unittest.cc", | 273 "net/rtp/cast_message_builder_unittest.cc", |
| 272 "net/rtp/frame_buffer_unittest.cc", | 274 "net/rtp/frame_buffer_unittest.cc", |
| 273 "net/rtp/framer_unittest.cc", | 275 "net/rtp/framer_unittest.cc", |
| 274 "net/rtp/mock_rtp_payload_feedback.cc", | 276 "net/rtp/mock_rtp_payload_feedback.cc", |
| 275 "net/rtp/mock_rtp_payload_feedback.h", | 277 "net/rtp/mock_rtp_payload_feedback.h", |
| 276 "net/rtp/packet_storage_unittest.cc", | 278 "net/rtp/packet_storage_unittest.cc", |
| 277 "net/rtp/receiver_stats_unittest.cc", | 279 "net/rtp/receiver_stats_unittest.cc", |
| 278 "net/rtp/rtp_header_parser.cc", | 280 "net/rtp/rtp_header_parser.cc", |
| (...skipping 81 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 |