Adding video_coding_integrationtests test.
These changes makes it possible to run this tool with some gtest additions in an automated manner on the buildbots. This test was previously known as video_coding_test, which is an integration test that is mostly used as a development tool. Parts of this test should be extracted and kept as a separate development tool, but that's something for a future CL. I also refactored the old command line parsing to use gflags instead. Previous code from the following tests were merged into video_coding_integrationtests and video_coding_unittests: * video_codecs_test_framework_integrationtests * video_codecs_test_framework_unittests So these targets are now gone. BUG=none TEST=trybots passing + Executing video_coding_integrationtests on Linux, Mac and Windows since it's not currently added to the trybots. I ran with a couple of different combinations of settings. Review URL: https://webrtc-codereview.appspot.com/933026 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3176 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -8,16 +8,18 @@
|
||||
|
||||
{
|
||||
'targets': [{
|
||||
'target_name': 'video_coding_test',
|
||||
'target_name': 'video_coding_integrationtests',
|
||||
'type': 'executable',
|
||||
'dependencies': [
|
||||
'rtp_rtcp',
|
||||
'video_codecs_test_framework',
|
||||
'video_processing',
|
||||
'webrtc_video_coding',
|
||||
'webrtc_utility',
|
||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||
'<(DEPTH)/third_party/google-gflags/google-gflags.gyp:google-gflags',
|
||||
'<(webrtc_root)/test/test.gyp:test_support',
|
||||
'<(webrtc_root)/test/metrics.gyp:metrics',
|
||||
'webrtc_video_coding',
|
||||
'rtp_rtcp',
|
||||
'webrtc_utility',
|
||||
'video_processing',
|
||||
'<(webrtc_root)/common_video/common_video.gyp:common_video',
|
||||
],
|
||||
'include_dirs': [
|
||||
@ -61,12 +63,14 @@
|
||||
'../test/video_rtp_play_mt.cc',
|
||||
'../test/video_rtp_play.cc',
|
||||
'../test/video_source.cc',
|
||||
], # source
|
||||
'../../codecs/test/videoprocessor_integrationtest.cc',
|
||||
], # sources
|
||||
},
|
||||
{
|
||||
'target_name': 'video_coding_unittests',
|
||||
'type': 'executable',
|
||||
'dependencies': [
|
||||
'video_codecs_test_framework',
|
||||
'webrtc_video_coding',
|
||||
'<(webrtc_root)/test/test.gyp:test_support_main',
|
||||
'<(DEPTH)/testing/gtest.gyp:gtest',
|
||||
@ -85,6 +89,9 @@
|
||||
'video_coding_robustness_unittest.cc',
|
||||
'video_coding_impl_unittest.cc',
|
||||
'qm_select_unittest.cc',
|
||||
'../../codecs/test/packet_manipulator_unittest.cc',
|
||||
'../../codecs/test/stats_unittest.cc',
|
||||
'../../codecs/test/videoprocessor_unittest.cc',
|
||||
],
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user