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 <mbonadei@webrtc.org>
Reviewed-by: Henrik Kjellander <kjellander@webrtc.org>
Cr-Original-Commit-Position: refs/heads/master@{#19841}
Cr-Mirrored-From: https://webrtc.googlesource.com/src
Cr-Mirrored-Commit: 9c66aee407310575373c4e12671cbe8a8e6270fe
diff --git a/api/DEPS b/api/DEPS
index b73e337..fad1d84 100644
--- a/api/DEPS
+++ b/api/DEPS
@@ -34,4 +34,8 @@
   ".*\.cc": [
     "+webrtc/modules/audio_coding",
   ],
+
+  ".*i420_buffer\.h": [
+    "+webrtc/system_wrappers/include/aligned_malloc.h",
+  ],
 }
diff --git a/modules/video_coding/DEPS b/modules/video_coding/DEPS
index 09f9152..068c0ae 100644
--- a/modules/video_coding/DEPS
+++ b/modules/video_coding/DEPS
@@ -17,4 +17,7 @@
      "+webrtc/media/engine",
      "+webrtc/sdk",
   ],
+  ".*h264\.h": [
+    "+webrtc/media/base/codec.h"
+  ],
 }
diff --git a/rtc_base/DEPS b/rtc_base/DEPS
index 6abcfb8..cfc5286 100644
--- a/rtc_base/DEPS
+++ b/rtc_base/DEPS
@@ -8,8 +8,12 @@
 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/test/DEPS b/test/DEPS
index 33d0e48..5aaae76 100644
--- a/test/DEPS
+++ b/test/DEPS
@@ -26,4 +26,18 @@
   "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",
+  ],
 }