diff --git a/webrtc/api/DEPS b/webrtc/api/DEPS index b73e337aa6..fad1d841d8 100644 --- a/webrtc/api/DEPS +++ b/webrtc/api/DEPS @@ -34,4 +34,8 @@ specific_include_rules = { ".*\.cc": [ "+webrtc/modules/audio_coding", ], + + ".*i420_buffer\.h": [ + "+webrtc/system_wrappers/include/aligned_malloc.h", + ], } diff --git a/webrtc/modules/video_coding/DEPS b/webrtc/modules/video_coding/DEPS index 09f9152074..068c0ae206 100644 --- a/webrtc/modules/video_coding/DEPS +++ b/webrtc/modules/video_coding/DEPS @@ -17,4 +17,7 @@ specific_include_rules = { "+webrtc/media/engine", "+webrtc/sdk", ], + ".*h264\.h": [ + "+webrtc/media/base/codec.h" + ], } diff --git a/webrtc/rtc_base/DEPS b/webrtc/rtc_base/DEPS index 6abcfb8291..cfc5286c96 100644 --- a/webrtc/rtc_base/DEPS +++ b/webrtc/rtc_base/DEPS @@ -8,8 +8,12 @@ include_rules = [ specific_include_rules = { "gunit_prod.h": [ "+gtest", + "+testing/base/gunit_prod.h", ], "protobuf_utils.h": [ "+third_party/protobuf", ], + "gunit\.h": [ + "+testing/base/public/gunit.h" + ], } diff --git a/webrtc/test/DEPS b/webrtc/test/DEPS index 33d0e48dc5..5aaae768b3 100644 --- a/webrtc/test/DEPS +++ b/webrtc/test/DEPS @@ -26,4 +26,18 @@ specific_include_rules = { "gtest\.h": [ "+testing/gtest/include/gtest", ], + ".*congestion_controller_feedback_fuzzer\.cc": [ + "+webrtc/modules/congestion_controller/include/receive_side_congestion_controller.h", + "+webrtc/modules/pacing/packet_router.h", + "+webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h", + ], + ".*pseudotcp_parser_fuzzer\.cc": [ + "+webrtc/p2p/base/pseudotcp.h", + ], + ".*stun_parser_fuzzer\.cc": [ + "+webrtc/p2p/base/stun.h", + ], + ".*stun_validator_fuzzer\.cc": [ + "+webrtc/p2p/base/stun.h", + ], }