Fix Windows gyp run.

On Windows, gyp seems to require valid source files. The matlab_plotting_test target was missing its one source file, so I removed the target.

Also moving bwe_standalone.gypi to the test include list.
Review URL: http://webrtc-codereview.appspot.com/143001

git-svn-id: http://webrtc.googlecode.com/svn/trunk@589 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2011-09-13 17:03:15 +00:00
parent f5fb095bf9
commit 2cef36fa98
2 changed files with 1 additions and 29 deletions

View File

@ -37,7 +37,6 @@
'video_processing/main/source/video_processing.gypi',
'video_render/main/source/video_render.gypi',
'rtp_rtcp/source/rtp_rtcp.gypi',
'rtp_rtcp/test/bwe_standalone.gypi',
],
# Test targets, excluded when building with Chromium.
@ -49,6 +48,7 @@
'audio_coding/codecs/iSAC/isacfix_test.gypi',
'audio_processing/main/apm_tests.gypi',
'rtp_rtcp/source/rtp_rtcp_tests.gypi',
'rtp_rtcp/test/bwe_standalone.gypi',
'rtp_rtcp/test/test_bwe/test_bwe.gypi',
'rtp_rtcp/test/testFec/test_fec.gypi',
'video_coding/main/source/video_coding_test.gypi',

View File

@ -101,34 +101,6 @@
],
},
},
{
'target_name': 'matlab_plotting_test',
'type': 'executable',
'dependencies': [
'matlab_plotting',
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
],
'include_dirs': [
],
'sources': [
'BWEStandAlone/matlab_plotting_test.cc',
], # source
'conditions': [
['OS=="linux"', {
'cflags': [
'-fexceptions', # enable exceptions
],
},
],
],
'include_dirs': [
],
'link_settings': {
},
},
],
}