This CL is a pure refactoring which should not result in any functinal changes. It moves ownership of the RtcEventLog from webrtc::Call to the webrtc::PeerConnection object. This is done so that we can add RtcEventLog support for ICE events - which will require the TransportController to have a pointer to the RtcEventLog. PeerConnection is the closest common owner of both Call and TransportController (through WebRtcSession). BUG=webrtc:6393 Review-Url: https://codereview.webrtc.org/2353033005 Cr-Commit-Position: refs/heads/master@{#14578}
28 lines
666 B
Python
28 lines
666 B
Python
include_rules = [
|
|
"+third_party/libyuv",
|
|
"+webrtc/base",
|
|
"+webrtc/common_video",
|
|
"+webrtc/media",
|
|
"+webrtc/p2p",
|
|
"+webrtc/pc",
|
|
"+webrtc/logging/rtc_event_log",
|
|
"+webrtc/modules/audio_device",
|
|
"+webrtc/modules/rtp_rtcp",
|
|
"+webrtc/modules/video_coding",
|
|
"+webrtc/modules/video_render",
|
|
"+webrtc/system_wrappers",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"androidtestinitializer\.cc": [
|
|
"+base/android", # Allowed only for Android tests.
|
|
"+webrtc/voice_engine",
|
|
],
|
|
"peerconnection_jni\.cc": [
|
|
"+webrtc/voice_engine",
|
|
],
|
|
"peerconnectionfactory\.cc": [
|
|
"+webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h",
|
|
],
|
|
}
|