andresp@webrtc.org | 749c602 | 2015-02-25 11:50:17 +0000 | [diff] [blame^] | 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/system_wrappers.gyp:system_wrappers_default', |
| 24 | '<(webrtc_root)/test/webrtc_test_common.gyp:webrtc_test_common', |
| 25 | ], |
| 26 | 'sources': [ |
| 27 | # headers |
| 28 | 'main/test/codec_database_test.h', |
| 29 | 'main/test/generic_codec_test.h', |
| 30 | 'main/test/media_opt_test.h', |
| 31 | 'main/test/mt_test_common.h', |
| 32 | 'main/test/normal_test.h', |
| 33 | 'main/test/quality_modes_test.h', |
| 34 | 'main/test/receiver_tests.h', |
| 35 | 'main/test/release_test.h', |
| 36 | 'main/test/rtp_player.h', |
| 37 | 'main/test/test_callbacks.h', |
| 38 | 'main/test/test_util.h', |
| 39 | 'main/test/vcm_payload_sink_factory.h', |
| 40 | 'main/test/video_source.h', |
| 41 | |
| 42 | # sources |
| 43 | 'main/test/codec_database_test.cc', |
| 44 | 'main/test/generic_codec_test.cc', |
| 45 | 'main/test/media_opt_test.cc', |
| 46 | 'main/test/mt_rx_tx_test.cc', |
| 47 | 'main/test/mt_test_common.cc', |
| 48 | 'main/test/normal_test.cc', |
| 49 | 'main/test/quality_modes_test.cc', |
| 50 | 'main/test/rtp_player.cc', |
| 51 | 'main/test/test_callbacks.cc', |
| 52 | 'main/test/test_util.cc', |
| 53 | 'main/test/tester_main.cc', |
| 54 | 'main/test/vcm_payload_sink_factory.cc', |
| 55 | 'main/test/video_rtp_play.cc', |
| 56 | 'main/test/video_rtp_play_mt.cc', |
| 57 | 'main/test/video_source.cc', |
| 58 | ], # sources |
| 59 | }, |
| 60 | ], |
| 61 | } |