aboutsummaryrefslogtreecommitdiff
path: root/DEPS
diff options
context:
space:
mode:
authorkjellander@webrtc.org <kjellander@webrtc.org>2014-10-01 06:03:47 +0000
committerkjellander@webrtc.org <kjellander@webrtc.org>2014-10-01 06:03:47 +0000
commitafefed5c93cf71c52ca53daffe453c6bb350e97d (patch)
tree4292d4932ba3c6d37cf7b0eb304884a3441cf87b /DEPS
parent83fe69da95bde17a8a80c4e9f8aaa1fe1439be85 (diff)
downloadwebrtc-afefed5c93cf71c52ca53daffe453c6bb350e97d.tar.gz
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
Diffstat (limited to 'DEPS')
-rw-r--r--DEPS6
1 files 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',
]