2012-01-30 09:03:37 +00:00
|
|
|
# Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
#
|
|
|
|
|
# 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': [
|
|
|
|
|
{
|
2011-11-03 23:28:47 +00:00
|
|
|
'target_name': 'rtp_rtcp_unittests',
|
2011-09-20 13:52:04 +00:00
|
|
|
'type': 'executable',
|
|
|
|
|
'dependencies': [
|
|
|
|
|
'rtp_rtcp',
|
2012-06-27 01:41:54 +00:00
|
|
|
'<(DEPTH)/testing/gmock.gyp:gmock',
|
|
|
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
|
|
|
|
'<(webrtc_root)/test/test.gyp:test_support_main',
|
2011-09-20 13:52:04 +00:00
|
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
|
|
|
|
],
|
|
|
|
|
'include_dirs': [
|
|
|
|
|
'../../../',
|
|
|
|
|
],
|
|
|
|
|
'sources': [
|
2012-12-03 14:01:46 +00:00
|
|
|
'../test/testAPI/test_api.cc',
|
|
|
|
|
'../test/testAPI/test_api.h',
|
|
|
|
|
'../test/testAPI/test_api_audio.cc',
|
2013-03-18 15:00:50 +00:00
|
|
|
'../test/testAPI/test_api_nack.cc',
|
2012-12-03 14:01:46 +00:00
|
|
|
'../test/testAPI/test_api_rtcp.cc',
|
|
|
|
|
'../test/testAPI/test_api_video.cc',
|
2013-02-04 13:23:07 +00:00
|
|
|
'mock/mock_rtp_payload_strategy.h',
|
|
|
|
|
'mock/mock_rtp_receiver_video.h',
|
2012-03-20 22:10:56 +00:00
|
|
|
'fec_test_helper.cc',
|
|
|
|
|
'fec_test_helper.h',
|
2013-03-15 23:21:52 +00:00
|
|
|
'nack_rtx_unittest.cc',
|
2012-03-20 22:10:56 +00:00
|
|
|
'producer_fec_unittest.cc',
|
2012-01-30 09:03:37 +00:00
|
|
|
'receiver_fec_unittest.cc',
|
2013-02-04 13:23:07 +00:00
|
|
|
'rtcp_format_remb_unittest.cc',
|
|
|
|
|
'rtcp_sender_unittest.cc',
|
|
|
|
|
'rtcp_receiver_unittest.cc',
|
2012-02-04 02:46:35 +00:00
|
|
|
'rtp_fec_unittest.cc',
|
2011-11-03 23:28:47 +00:00
|
|
|
'rtp_format_vp8_unittest.cc',
|
2011-12-21 08:51:36 +00:00
|
|
|
'rtp_format_vp8_test_helper.cc',
|
|
|
|
|
'rtp_format_vp8_test_helper.h',
|
2012-05-04 08:13:57 +00:00
|
|
|
'rtp_packet_history_unittest.cc',
|
2013-02-04 13:23:07 +00:00
|
|
|
'rtp_payload_registry_unittest.cc',
|
2012-05-04 08:13:57 +00:00
|
|
|
'rtp_utility_unittest.cc',
|
|
|
|
|
'rtp_header_extension_unittest.cc',
|
|
|
|
|
'rtp_sender_unittest.cc',
|
2012-01-18 08:21:15 +00:00
|
|
|
'vp8_partition_aggregator_unittest.cc',
|
2011-08-29 15:37:12 +00:00
|
|
|
],
|
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.
|
|
|
|
|
],
|
2011-08-29 15:37:12 +00:00
|
|
|
},
|
2011-07-07 08:21:25 +00:00
|
|
|
],
|
|
|
|
|
}
|