2012-03-22 12:56:54 +00:00
|
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
{
|
|
|
|
|
'targets': [
|
|
|
|
|
{
|
|
|
|
|
'target_name': 'libvietest',
|
2013-01-18 23:42:21 +00:00
|
|
|
'type': 'static_library',
|
2012-03-22 12:56:54 +00:00
|
|
|
'dependencies': [
|
|
|
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
2012-06-27 01:41:54 +00:00
|
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
|
|
|
|
'<(webrtc_root)/test/test.gyp:test_support',
|
2012-03-22 12:56:54 +00:00
|
|
|
'video_engine_core',
|
|
|
|
|
],
|
|
|
|
|
'sources': [
|
|
|
|
|
# Helper classes
|
2012-11-29 10:20:18 +00:00
|
|
|
'include/vie_external_render_filter.h',
|
2012-03-22 12:56:54 +00:00
|
|
|
'include/vie_fake_camera.h',
|
|
|
|
|
'include/vie_file_capture_device.h',
|
|
|
|
|
'include/vie_to_file_renderer.h',
|
|
|
|
|
|
|
|
|
|
'helpers/vie_fake_camera.cc',
|
|
|
|
|
'helpers/vie_file_capture_device.cc',
|
|
|
|
|
'helpers/vie_to_file_renderer.cc',
|
|
|
|
|
|
|
|
|
|
# Testbed classes
|
|
|
|
|
'include/tb_capture_device.h',
|
|
|
|
|
'include/tb_external_transport.h',
|
|
|
|
|
'include/tb_I420_codec.h',
|
|
|
|
|
'include/tb_interfaces.h',
|
|
|
|
|
'include/tb_video_channel.h',
|
|
|
|
|
|
|
|
|
|
'testbed/tb_capture_device.cc',
|
|
|
|
|
'testbed/tb_external_transport.cc',
|
|
|
|
|
'testbed/tb_I420_codec.cc',
|
|
|
|
|
'testbed/tb_interfaces.cc',
|
|
|
|
|
'testbed/tb_video_channel.cc',
|
|
|
|
|
],
|
2013-02-04 10:07:17 +00:00
|
|
|
# Disable warnings to enable Win64 build, issue 1323.
|
|
|
|
|
'msvs_disabled_warnings': [
|
|
|
|
|
4267, # size_t to int truncation.
|
|
|
|
|
],
|
2012-03-22 12:56:54 +00:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}
|