blob: 07ebdffab1777e6b8c2ed20f033260c6af2ca94e [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 {
11 'target_name': 'video_coding_test',
12 'type': 'executable',
13 'dependencies': [
14 'rtp_rtcp',
15 'video_processing',
16 'webrtc_video_coding',
17 'webrtc_utility',
18 '<(DEPTH)/testing/gtest.gyp:gtest',
19 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
kwiberg@webrtc.orgac2d27d2015-02-26 13:59:22 +000020 '<(webrtc_root)/common.gyp:webrtc_common',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000021 '<(webrtc_root)/test/test.gyp:test_support',
22 '<(webrtc_root)/test/metrics.gyp:metrics',
23 '<(webrtc_root)/common_video/common_video.gyp:common_video',
24 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_default',
25 '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common',
26 ],
27 'sources': [
28 # headers
29 'main/test/codec_database_test.h',
30 'main/test/generic_codec_test.h',
31 'main/test/media_opt_test.h',
32 'main/test/mt_test_common.h',
33 'main/test/normal_test.h',
34 'main/test/quality_modes_test.h',
35 'main/test/receiver_tests.h',
36 'main/test/release_test.h',
37 'main/test/rtp_player.h',
38 'main/test/test_callbacks.h',
39 'main/test/test_util.h',
40 'main/test/vcm_payload_sink_factory.h',
41 'main/test/video_source.h',
42
43 # sources
44 'main/test/codec_database_test.cc',
45 'main/test/generic_codec_test.cc',
46 'main/test/media_opt_test.cc',
47 'main/test/mt_rx_tx_test.cc',
48 'main/test/mt_test_common.cc',
49 'main/test/normal_test.cc',
50 'main/test/quality_modes_test.cc',
51 'main/test/rtp_player.cc',
52 'main/test/test_callbacks.cc',
53 'main/test/test_util.cc',
54 'main/test/tester_main.cc',
55 'main/test/vcm_payload_sink_factory.cc',
56 'main/test/video_rtp_play.cc',
57 'main/test/video_rtp_play_mt.cc',
58 'main/test/video_source.cc',
59 ], # sources
60 },
61 ],
62}