diff options
author | sdefresne <sdefresne@chromium.org> | 2015-02-24 09:43:36 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-24 17:44:14 +0000 |
commit | c317a75b93528a0ddb1f953d651edc0c48421434 (patch) | |
tree | 150470329bee9718976e353bfdb759d9b77a02bb /ios/chrome/test | |
parent | 5cc35ccd3d20eff2187d1f27510b37e0c5c0f0d5 (diff) | |
download | chromium_src-c317a75b93528a0ddb1f953d651edc0c48421434.zip chromium_src-c317a75b93528a0ddb1f953d651edc0c48421434.tar.gz chromium_src-c317a75b93528a0ddb1f953d651edc0c48421434.tar.bz2 |
Tighten DEPS in ios/
The DEPS checker implicitly allow all files in a subdirectory of src/
to include any other file in the same directory. This meant that any
file in ios/ could include any other file except when explicitly
forbidden.
This CL change this by disabling all inclusion of files from ios/ at
the root level, leaving the dependency decision to the individual
subdirectories.
BUG=None
Review URL: https://codereview.chromium.org/952633002
Cr-Commit-Position: refs/heads/master@{#317816}
Diffstat (limited to 'ios/chrome/test')
-rw-r--r-- | ios/chrome/test/DEPS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ios/chrome/test/DEPS b/ios/chrome/test/DEPS new file mode 100644 index 0000000..9074a78 --- /dev/null +++ b/ios/chrome/test/DEPS @@ -0,0 +1,3 @@ +include_rules = [ + "+ios/chrome/browser", +] |