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
This commit is contained in:
kjellander@webrtc.org 2014-10-01 06:03:47 +00:00
parent 83fe69da95
commit afefed5c93

6
DEPS
View File

@ -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',
]