Reason for revert: This CL just landed: https://codereview.chromium.org/1323243006/ Which fixes the FYI bots for the original CL, and breaks them for this revert. Original issue's description: > Revert of TransportController refactoring. (patchset #6 id:100001 of https://codereview.webrtc.org/1350523003/ ) > > Reason for revert: > This CL causes problems with the WebRTC-in-Chromium FYI bots. Presumably it needs to be done in several steps, where removed files are emptied instead of removed in the first step. > > Original issue's description: > > TransportController refactoring. > > > > Getting rid of TransportProxy, and in its place adding a > > TransportController class which will facilitate access to and manage > > the lifetimes of Transports. These Transports will now be accessed > > solely from the worker thread, simplifying their implementation. > > > > This refactoring also pulls Transport-related code out of BaseSession. > > Which means that BaseChannels will now rely on the TransportController > > interface to create channels, rather than BaseSession. > > > > Committed: https://crrev.com/47ee2f3b9f33e8938948c482c921d4e13a3acd83 > > Cr-Commit-Position: refs/heads/master@{#10022} > > TBR=pthatcher@webrtc.org,deadbeef@webrtc.org > NOPRESUBMIT=true > NOTREECHECKS=true > NOTRY=true > > Committed: https://crrev.com/a81a42f584baa0d93a4b93da9632415e8922450c > Cr-Commit-Position: refs/heads/master@{#10024} TBR=pthatcher@webrtc.org,torbjorng@webrtc.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.webrtc.org/1361773005 Cr-Commit-Position: refs/heads/master@{#10036}
44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
# Copyright (c) 2014 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.
|
|
|
|
{
|
|
'includes': [ '../build/common.gypi', ],
|
|
'targets': [
|
|
{
|
|
'target_name': 'rtc_p2p_unittest',
|
|
'type': 'none',
|
|
'direct_dependent_settings': {
|
|
'sources': [
|
|
'base/dtlstransportchannel_unittest.cc',
|
|
'base/faketransportcontroller.h',
|
|
'base/p2ptransportchannel_unittest.cc',
|
|
'base/port_unittest.cc',
|
|
'base/pseudotcp_unittest.cc',
|
|
'base/relayport_unittest.cc',
|
|
'base/relayserver_unittest.cc',
|
|
'base/stun_unittest.cc',
|
|
'base/stunport_unittest.cc',
|
|
'base/stunrequest_unittest.cc',
|
|
'base/stunserver_unittest.cc',
|
|
'base/testrelayserver.h',
|
|
'base/teststunserver.h',
|
|
'base/testturnserver.h',
|
|
'base/transport_unittest.cc',
|
|
'base/transportcontroller_unittest.cc',
|
|
'base/transportdescriptionfactory_unittest.cc',
|
|
'base/turnport_unittest.cc',
|
|
'client/fakeportallocator.h',
|
|
'client/portallocator_unittest.cc',
|
|
'stunprober/stunprober_unittest.cc',
|
|
],
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|