1# 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',
20         '<(webrtc_root)/test/test.gyp:test_support',
21         '<(webrtc_root)/test/metrics.gyp:metrics',
22         '<(webrtc_root)/common_video/common_video.gyp:common_video',
23         '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:field_trial_default',
24         '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common',
25      ],
26      'sources': [
27        # headers
28        '../test/codec_database_test.h',
29        '../test/generic_codec_test.h',
30        '../test/jitter_estimate_test.h',
31        '../test/media_opt_test.h',
32        '../test/mt_test_common.h',
33        '../test/normal_test.h',
34        '../test/quality_modes_test.h',
35        '../test/receiver_tests.h',
36        '../test/release_test.h',
37        '../test/rtp_player.h',
38        '../test/test_callbacks.h',
39        '../test/test_util.h',
40        '../test/vcm_payload_sink_factory.h',
41        '../test/video_source.h',
42
43        # sources
44        '../test/codec_database_test.cc',
45        '../test/generic_codec_test.cc',
46        '../test/media_opt_test.cc',
47        '../test/mt_rx_tx_test.cc',
48        '../test/mt_test_common.cc',
49        '../test/normal_test.cc',
50        '../test/quality_modes_test.cc',
51        '../test/rtp_player.cc',
52        '../test/test_callbacks.cc',
53        '../test/test_util.cc',
54        '../test/tester_main.cc',
55        '../test/vcm_payload_sink_factory.cc',
56        '../test/video_rtp_play.cc',
57        '../test/video_rtp_play_mt.cc',
58        '../test/video_source.cc',
59      ], # sources
60    },
61  ],
62}
63