From afefed5c93cf71c52ca53daffe453c6bb350e97d Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Wed, 1 Oct 2014 06:03:47 +0000 Subject: [PATCH] Update checkdeps.py rules in DEPS The initial rules didn't allow including source from third_party, which is incorrect. Cleanup irrelevant rules for directories that are ignored, since WebRTC don't have any source code in those locations. BUG= R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/30599004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7351 4adac7df-926f-26a2-2b94-8c16560cd09d --- DEPS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DEPS b/DEPS index 3357a10e90..ca38476975 100644 --- a/DEPS +++ b/DEPS @@ -34,22 +34,22 @@ deps_os = { }, } +# Define rules for which include paths are allowed in our source. include_rules = [ # Base is only used to build Android APK tests and may not be referenced by # WebRTC production code. "-base", "-chromium", + '+gflags', '+net', '+talk', '+testing', + '+third_party', '+webrtc', ] # checkdeps.py shouldn't check include paths for files in these dirs: skip_child_includes = [ - 'gflags', - 'testing', - 'third_party', 'webrtc/overrides', ]