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
3 # found in the LICENSE file.
8 # GN version: //media/cast:test_support
9 'target_name': 'cast_test_utility',
10 'type': 'static_library',
17 '<(DEPTH)/testing/gtest.gyp:gtest',
18 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
19 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
20 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
24 'test/fake_media_source.cc',
25 'test/fake_media_source.h',
26 'test/fake_single_thread_task_runner.cc',
27 'test/fake_single_thread_task_runner.h',
28 'test/loopback_transport.cc',
29 'test/loopback_transport.h',
30 'test/skewed_single_thread_task_runner.cc',
31 'test/skewed_single_thread_task_runner.h',
32 'test/skewed_tick_clock.cc',
33 'test/skewed_tick_clock.h',
34 'test/utility/audio_utility.cc',
35 'test/utility/audio_utility.h',
36 'test/utility/barcode.cc',
37 'test/utility/barcode.h',
38 'test/utility/default_config.cc',
39 'test/utility/default_config.h',
40 'test/utility/in_process_receiver.cc',
41 'test/utility/in_process_receiver.h',
42 'test/utility/input_builder.cc',
43 'test/utility/input_builder.h',
44 'test/utility/net_utility.cc',
45 'test/utility/net_utility.h',
46 'test/utility/standalone_cast_environment.cc',
47 'test/utility/standalone_cast_environment.h',
48 'test/utility/udp_proxy.cc',
49 'test/utility/udp_proxy.h',
50 'test/utility/video_utility.cc',
51 'test/utility/video_utility.h',
55 # GN version: //media/cast:cast_unittests
56 'target_name': 'cast_unittests',
57 'type': '<(gtest_target_type)',
67 # Not a true dependency. This is here to make sure the CQ can verify
68 # the tools compile correctly.
70 '<(DEPTH)/base/base.gyp:test_support_base',
71 '<(DEPTH)/net/net.gyp:net',
72 '<(DEPTH)/testing/gmock.gyp:gmock',
73 '<(DEPTH)/testing/gtest.gyp:gtest',
76 '<(DEPTH)/media/base/run_all_unittests.cc',
77 'logging/encoding_event_subscriber_unittest.cc',
78 'logging/logging_impl_unittest.cc',
79 'logging/logging_raw_unittest.cc',
80 'logging/receiver_time_offset_estimator_impl_unittest.cc',
81 'logging/serialize_deserialize_test.cc',
82 'logging/simple_event_subscriber_unittest.cc',
83 'logging/stats_event_subscriber_unittest.cc',
84 'net/cast_transport_sender_impl_unittest.cc',
85 'net/frame_id_wrap_helper_test.cc',
86 'net/mock_cast_transport_sender.cc',
87 'net/mock_cast_transport_sender.h',
88 'net/pacing/mock_paced_packet_sender.cc',
89 'net/pacing/mock_paced_packet_sender.h',
90 'net/pacing/paced_sender_unittest.cc',
91 'net/rtcp/receiver_rtcp_event_subscriber_unittest.cc',
92 'net/rtcp/rtcp_builder_unittest.cc',
93 'net/rtcp/rtcp_unittest.cc',
94 'net/rtcp/rtcp_utility_unittest.cc',
95 # TODO(miu): The following two are test utility modules. Rename/move the files.
96 'net/rtcp/test_rtcp_packet_builder.cc',
97 'net/rtcp/test_rtcp_packet_builder.h',
98 'net/rtp/cast_message_builder_unittest.cc',
99 'net/rtp/frame_buffer_unittest.cc',
100 'net/rtp/framer_unittest.cc',
101 'net/rtp/mock_rtp_payload_feedback.cc',
102 'net/rtp/mock_rtp_payload_feedback.h',
103 'net/rtp/packet_storage_unittest.cc',
104 'net/rtp/receiver_stats_unittest.cc',
105 'net/rtp/rtp_header_parser.cc',
106 'net/rtp/rtp_header_parser.h',
107 'net/rtp/rtp_packet_builder.cc',
108 'net/rtp/rtp_packetizer_unittest.cc',
109 'net/rtp/rtp_parser_unittest.cc',
110 'net/rtp/rtp_receiver_defines.h',
111 'net/udp_transport_unittest.cc',
112 'receiver/audio_decoder_unittest.cc',
113 'receiver/frame_receiver_unittest.cc',
114 'receiver/video_decoder_unittest.cc',
115 'sender/audio_encoder_unittest.cc',
116 'sender/audio_sender_unittest.cc',
117 'sender/congestion_control_unittest.cc',
118 'sender/fake_video_encode_accelerator_factory.cc',
119 'sender/fake_video_encode_accelerator_factory.h',
120 'sender/video_encoder_unittest.cc',
121 'sender/video_sender_unittest.cc',
122 'test/end2end_unittest.cc',
123 'test/fake_receiver_time_offset_estimator.cc',
124 'test/fake_receiver_time_offset_estimator.h',
125 'test/fake_single_thread_task_runner.cc',
126 'test/fake_single_thread_task_runner.h',
127 'test/utility/audio_utility_unittest.cc',
128 'test/utility/barcode_unittest.cc',
132 'target_name': 'cast_benchmarks',
133 'type': '<(gtest_target_type)',
143 '<(DEPTH)/base/base.gyp:test_support_base',
144 '<(DEPTH)/net/net.gyp:net',
145 '<(DEPTH)/testing/gtest.gyp:gtest',
148 'test/cast_benchmarks.cc',
149 'test/fake_single_thread_task_runner.cc',
150 'test/fake_single_thread_task_runner.h',
151 'test/utility/test_util.cc',
152 'test/utility/test_util.h',
155 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"',
158 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
165 # This is a target for the collection of cast development tools.
166 # They are built on bots but not shipped.
167 'target_name': 'cast_tools',
177 'target_name': 'cast_receiver_app',
178 'type': 'executable',
187 '<(DEPTH)/net/net.gyp:net_test_support',
188 '<(DEPTH)/media/media.gyp:media',
189 '<(DEPTH)/testing/gtest.gyp:gtest',
190 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
193 '<(DEPTH)/media/cast/test/receiver.cc',
196 ['OS == "linux" and use_x11==1', {
198 '<(DEPTH)/build/linux/system.gyp:x11',
199 '<(DEPTH)/build/linux/system.gyp:xext',
202 '<(DEPTH)/media/cast/test/linux_output_window.cc',
203 '<(DEPTH)/media/cast/test/linux_output_window.h',
204 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
210 'target_name': 'cast_sender_app',
211 'type': 'executable',
220 '<(DEPTH)/net/net.gyp:net_test_support',
221 '<(DEPTH)/media/media.gyp:media',
222 '<(DEPTH)/testing/gtest.gyp:gtest',
223 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
224 '<(DEPTH)/third_party/opus/opus.gyp:opus',
225 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
228 '<(DEPTH)/media/cast/test/sender.cc',
232 'target_name': 'cast_simulator',
233 'type': 'executable',
240 'cast_network_model_proto',
243 '<(DEPTH)/net/net.gyp:net_test_support',
244 '<(DEPTH)/media/media.gyp:media',
245 '<(DEPTH)/testing/gtest.gyp:gtest',
246 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
247 '<(DEPTH)/third_party/opus/opus.gyp:opus',
248 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
251 '<(DEPTH)/media/cast/test/simulator.cc',
255 # GN version: //media/cast/test/proto
256 'target_name': 'cast_network_model_proto',
257 'type': 'static_library',
262 'test/proto/network_simulation_model.proto',
265 'proto_in_dir': 'test/proto',
266 'proto_out_dir': 'media/cast/test/proto',
268 'includes': ['../../build/protoc.gypi'],
271 # GN version: //media/cast:generate_barcode_video
272 'target_name': 'generate_barcode_video',
273 'type': 'executable',
279 '<(DEPTH)/base/base.gyp:base',
280 '<(DEPTH)/media/media.gyp:media',
283 'test/utility/generate_barcode_video.cc',
287 # GN version: //media/cast:generate_timecode_audio
288 'target_name': 'generate_timecode_audio',
289 'type': 'executable',
297 '<(DEPTH)/base/base.gyp:base',
298 '<(DEPTH)/media/media.gyp:media',
301 'test/utility/generate_timecode_audio.cc',
305 # GN version: //media/cast:udp_proxy
306 'target_name': 'udp_proxy',
307 'type': 'executable',
313 '<(DEPTH)/base/base.gyp:base',
314 '<(DEPTH)/media/media.gyp:media',
317 'test/utility/udp_proxy_main.cc',
326 'target_name': 'tap_proxy',
327 'type': 'executable',
333 '<(DEPTH)/base/base.gyp:base',
334 '<(DEPTH)/media/media.gyp:media',
337 'test/utility/tap_proxy.cc',
343 ['OS=="ios" or OS=="mac"', {
346 # GN version: //media/cast:cast_h264_vt_encoder_unittests
347 'target_name': 'cast_h264_vt_encoder_unittests',
348 'type': '<(gtest_target_type)',
356 '<(DEPTH)/base/base.gyp:test_support_base',
357 '<(DEPTH)/testing/gmock.gyp:gmock',
358 '<(DEPTH)/testing/gtest.gyp:gtest',
359 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
362 'sender/h264_vt_encoder_unittest.cc',
365 }], # OS=="ios" or OS=="mac"
366 ['test_isolation_mode != "noop"', {
369 'target_name': 'cast_unittests_run',
375 '../../build/isolate.gypi',
378 'cast_unittests.isolate',