webrtc/test/DEPS
Evan Shrubsole db50b03553 Add perfetto build config
This adds Perfetto support to WebRTC with a GN flag rtc_use_perfetto.
The configuration of perfetto depends on whether or not webrtc is
build within Chrome or not. When in Chrome, WebRTC will depend on
//third_party/perfetto:libperfetto. When building standalone, specific includes required for Perfetto are exposed with the library webrtc_libperfetto.

The perfetto trace API is exposed with a header export in
trace_event.h which is used instead of the legacy API.

The addition of Perfetto means there are 4 compilation modes for
tracing in WebRTC,
1. No tracing implementation.
2. Legacy tracing (AddTraceEvent/GetCategoryEnabled).
3.a. Perfetto statically linked (webrtc_libperfetto).
3.b. Perfetto in Chrome (Chrome's libperfetto).

This CL removes the tracing expectations from
rtc_stats_integrationtest.cc because those directly used the old API.

Integration into Chrome is a follow up CL which depends on
https://chromium-review.googlesource.com/c/chromium/src/+/5471691.

Tested: Ran Chrome with Perfetto and traces appear. WebRTC Unit test tracing working: https://ui.perfetto.dev/#!?s=04ea2613ea36b814394639a1ec4b60be5b5097527f1a485995ecc13469885468
Bug: webrtc:15917
Change-Id: I537d79dc247c2b759689910c621087286a4d8fdc
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/347880
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Auto-Submit: Evan Shrubsole <eshr@google.com>
Commit-Queue: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Mikhail Khokhlov <khokhlov@google.com>
Cr-Commit-Position: refs/heads/main@{#42166}
2024-04-24 20:53:23 +00:00

92 lines
2.1 KiB
Python

include_rules = [
"+third_party/libjpeg",
"+third_party/libjpeg_turbo",
"+call",
"+common_audio",
"+common_video",
"+logging/rtc_event_log",
"+media/base",
"+media/sctp",
"+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",
"+p2p/base/basic_packet_socket_factory.h",
"+sdk",
"+system_wrappers",
"+third_party/libyuv",
"+video/config",
]
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_lib\.cc": [
"+perfetto/tracing",
"+protos/perfetto/config",
],
".*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",
],
".*peer_connection_quality_test_params\.h": [
"+p2p/base/port_allocator.h",
],
".*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",
],
"emulated_turn_server\.h": [
"+p2p/base/turn_server.h",
]
}