Commit eed08752 authored by scherkus@chromium.org's avatar scherkus@chromium.org

Checking in FFmpeg regression testing framework.

Basically verifies that our assumptions on how FFmpeg works opening/seeking/parsing files remain intact.

BUG=19865
TEST=run ffmpeg_unittests :)

Review URL: http://codereview.chromium.org/3058004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53818 0039d316-1c4b-4281-b951-d872f2087c98
parent 285db508
This diff is collapsed.
...@@ -175,6 +175,39 @@ ...@@ -175,6 +175,39 @@
}], }],
], ],
}, },
{
'target_name': 'ffmpeg_unittests',
'type': 'executable',
'dependencies': [
'media',
'../base/base.gyp:base',
'../base/base.gyp:base_i18n',
'../base/base.gyp:test_support_perf',
'../testing/gtest.gyp:gtest',
'../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
],
'sources': [
'ffmpeg/ffmpeg_unittest.cc',
],
'conditions': [
['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
'dependencies': [
# Needed for the following #include chain:
# base/run_all_unittests.cc
# ../base/test_suite.h
# gtk/gtk.h
'../build/linux/system.gyp:gtk',
],
'conditions': [
['linux_use_tcmalloc==1', {
'dependencies': [
'../base/allocator/allocator.gyp:allocator',
],
}],
],
}],
],
},
{ {
'target_name': 'media_unittests', 'target_name': 'media_unittests',
'type': 'executable', 'type': 'executable',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment