TBR=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/915006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2963 4adac7df-926f-26a2-2b94-8c16560cd09d
52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
# 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': 'rtp_rtcp_unittests',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'rtp_rtcp',
|
|
'<(DEPTH)/testing/gmock.gyp:gmock',
|
|
'<(DEPTH)/testing/gtest.gyp:gtest',
|
|
'<(webrtc_root)/test/test.gyp:test_support_main',
|
|
'<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
|
|
],
|
|
'include_dirs': [
|
|
'../../../',
|
|
],
|
|
'sources': [
|
|
'fec_test_helper.cc',
|
|
'fec_test_helper.h',
|
|
'producer_fec_unittest.cc',
|
|
'receiver_fec_unittest.cc',
|
|
'rtp_fec_unittest.cc',
|
|
'rtp_format_vp8_unittest.cc',
|
|
'rtp_format_vp8_test_helper.cc',
|
|
'rtp_format_vp8_test_helper.h',
|
|
'rtcp_format_remb_unittest.cc',
|
|
'rtp_packet_history_unittest.cc',
|
|
'rtp_utility_unittest.cc',
|
|
'rtp_header_extension_unittest.cc',
|
|
'rtp_sender_unittest.cc',
|
|
'rtcp_sender_unittest.cc',
|
|
'rtcp_receiver_unittest.cc',
|
|
'transmission_bucket_unittest.cc',
|
|
'vp8_partition_aggregator_unittest.cc',
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|