blob: fc2fec6c98f0718001fc5b719f9e879a3fc472ee [file] [log] [blame]
andresp@webrtc.org749c6022015-02-25 11:50:17 +00001# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2# Use of this source code is governed by a BSD-style license
3# that can be found in the LICENSE file in the root of the source
4# tree. An additional intellectual property rights grant can be found
5# in the file PATENTS. All contributing project authors may
6# be found in the AUTHORS file in the root of the source tree.
7
8{
9 'targets': [
10 {
pbos@webrtc.orgd21406d2015-03-19 08:18:53 +000011 'target_name': 'rtp_player',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000012 'type': 'executable',
13 'dependencies': [
14 'rtp_rtcp',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000015 'webrtc_video_coding',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000016 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000017 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
18 '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common',
19 ],
20 'sources': [
21 # headers
Henrik Kjellander2557b862015-11-18 22:00:21 +010022 'test/receiver_tests.h',
23 'test/rtp_player.h',
24 'test/vcm_payload_sink_factory.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000025
26 # sources
Henrik Kjellander2557b862015-11-18 22:00:21 +010027 'test/rtp_player.cc',
28 'test/test_util.cc',
29 'test/tester_main.cc',
30 'test/vcm_payload_sink_factory.cc',
31 'test/video_rtp_play.cc',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000032 ], # sources
33 },
34 ],
35}