From 9c66aee407310575373c4e12671cbe8a8e6270fe Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Thu, 14 Sep 2017 16:26:07 +0200 Subject: [PATCH] Adding some checkdeps rules These rules are missing and this triggers a presubmit error when we move src/webrtc into src/. NOTRY=True TBR=solenberg@webrtc.org,stefan@webrtc.org,perkj@webrtc.org Bug: chromium:611808 Change-Id: If81e5e42911c5de8bdd1288bc7aa61b713c2c5fd Reviewed-on: https://webrtc-review.googlesource.com/1342 Commit-Queue: Mirko Bonadei Reviewed-by: Henrik Kjellander Cr-Commit-Position: refs/heads/master@{#19841} --- webrtc/api/DEPS | 4 ++++ webrtc/modules/video_coding/DEPS | 3 +++ webrtc/rtc_base/DEPS | 4 ++++ webrtc/test/DEPS | 14 ++++++++++++++ 4 files changed, 25 insertions(+) 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", + ], }