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-Commit-Position: refs/heads/master@{#19841}
This commit is contained in:
Mirko Bonadei 2017-09-14 16:26:07 +02:00 committed by Commit Bot
parent 9cad5016a3
commit 9c66aee407
4 changed files with 25 additions and 0 deletions

View File

@ -34,4 +34,8 @@ specific_include_rules = {
".*\.cc": [
"+webrtc/modules/audio_coding",
],
".*i420_buffer\.h": [
"+webrtc/system_wrappers/include/aligned_malloc.h",
],
}

View File

@ -17,4 +17,7 @@ specific_include_rules = {
"+webrtc/media/engine",
"+webrtc/sdk",
],
".*h264\.h": [
"+webrtc/media/base/codec.h"
],
}

View File

@ -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"
],
}

View File

@ -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",
],
}