This reverts commit 4c0a381137c04fd80830af8a041e25e3428dd33f. Reason for revert: Breaks downstream test Original change's description: > Make cricket::SctpTransportInternalFactory injectable through PeerConnectionFactory Deps > > This is to allow testing without using the singleton sctp library. > cricket::SctpTransportInternalFactory is renamed to webrtc::SctpTransportFactoryInterface and moved to the API folder to follow the API structure. > Tests can use test/pc/sctp/fake_sctp_transport.h to inject a faked data channel implementation. > > Bug: none > Change-Id: I482241269463595062548870750d33f31238c6b1 > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/182082 > Commit-Queue: Per Kjellander <perkj@webrtc.org> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> > Reviewed-by: Taylor <deadbeef@webrtc.org> > Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#32007} TBR=deadbeef@webrtc.org,mbonadei@webrtc.org,kwiberg@webrtc.org,perkj@webrtc.org Change-Id: I46d5ba89fe723caccd065b0ac41d77ed45373838 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: none Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/182802 Reviewed-by: Björn Terelius <terelius@webrtc.org> Commit-Queue: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32008}
80 lines
1.8 KiB
Python
80 lines
1.8 KiB
Python
include_rules = [
|
|
"+third_party/libjpeg",
|
|
"+third_party/libjpeg_turbo",
|
|
"+call",
|
|
"+common_audio",
|
|
"+common_video",
|
|
"+logging/rtc_event_log",
|
|
"+media/base",
|
|
"+media/engine",
|
|
"+modules/audio_coding",
|
|
"+modules/congestion_controller",
|
|
"+modules/audio_device",
|
|
"+modules/audio_mixer",
|
|
"+modules/audio_processing",
|
|
"+modules/congestion_controller/bbr",
|
|
"+modules/rtp_rtcp",
|
|
"+modules/utility",
|
|
"+modules/video_capture",
|
|
"+modules/video_coding",
|
|
"+sdk",
|
|
"+system_wrappers",
|
|
"+third_party/libyuv",
|
|
]
|
|
|
|
specific_include_rules = {
|
|
"gmock\.h": [
|
|
"+testing/gmock/include/gmock",
|
|
],
|
|
"gtest\.h": [
|
|
"+testing/gtest/include/gtest",
|
|
],
|
|
".*congestion_controller_feedback_fuzzer\.cc": [
|
|
"+modules/congestion_controller/include/receive_side_congestion_controller.h",
|
|
"+modules/pacing/packet_router.h",
|
|
"+modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h",
|
|
],
|
|
".*mdns_parser_fuzzer\.cc": [
|
|
"+p2p/base/mdns_message.h",
|
|
],
|
|
".*pseudotcp_parser_fuzzer\.cc": [
|
|
"+p2p/base/pseudo_tcp.h",
|
|
],
|
|
".*stun_parser_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
".*stun_validator_fuzzer\.cc": [
|
|
"+p2p/base/stun.h",
|
|
],
|
|
".*test_main\.cc": [
|
|
"+absl/debugging/failure_signal_handler.h",
|
|
"+absl/debugging/symbolize.h",
|
|
],
|
|
".*test_peer\.(h|cc)": [
|
|
"+pc",
|
|
"+p2p",
|
|
],
|
|
".*test_peer_factory\.(h|cc)": [
|
|
"+pc",
|
|
"+p2p",
|
|
],
|
|
".*network_emulation_pc_unittest\.cc": [
|
|
"+pc/peer_connection_wrapper.h",
|
|
"+pc/test/mock_peer_connection_observers.h",
|
|
"+p2p/client/basic_port_allocator.h",
|
|
],
|
|
".*peer_connection_quality_test\.(h|cc)": [
|
|
"+pc",
|
|
],
|
|
".*sdp_changer\.(h|cc)": [
|
|
"+pc",
|
|
"+p2p",
|
|
],
|
|
".*test_video_capturer_video_track_source.h": [
|
|
"+pc",
|
|
],
|
|
"benchmark_main\.cc": [
|
|
"+benchmark",
|
|
]
|
|
}
|