Files
platform-external-webrtc/test/DEPS
Artem Titov bf9e01ab4e Add support of fast media sending in peer connection e2e test
Start sending media from the peer when it's ICE connection state is
connected.

Bug: webrtc:10138
Change-Id: I9f5a1cd917317a3ebadd7c156563035b0bbecf2a
Reviewed-on: https://webrtc-review.googlesource.com/c/121956
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Peter Slatala <psla@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26698}
2019-02-15 00:51:03 +00:00

61 lines
1.4 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/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_peer\.(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",
]
}