summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordanakj <danakj@chromium.org>2015-11-25 14:10:13 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-25 22:12:07 +0000
commitb1423c53bd64c7865d730624038705d940fdac1e (patch)
tree61f270570195c18784dea3b871f6b72ebe329ef5
parentf5e5012ab6a7826b6bfddb267ae0ab1a8a03f2da (diff)
downloadchromium_src-b1423c53bd64c7865d730624038705d940fdac1e.zip
chromium_src-b1423c53bd64c7865d730624038705d940fdac1e.tar.gz
chromium_src-b1423c53bd64c7865d730624038705d940fdac1e.tar.bz2
Remove the presubmit warning when changing code in third_party/mojo/
This code is part of the chromium tree, not pulled in by DEPS. So we should let people change the code freely. Currently every time you change this code, a presubmit warning is given. Let's not do that. R=jam, jochen, sky Review URL: https://codereview.chromium.org/1476893004 Cr-Commit-Position: refs/heads/master@{#361745}
-rw-r--r--third_party/PRESUBMIT.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/PRESUBMIT.py b/third_party/PRESUBMIT.py
index 662168d1..e7b8dd3 100644
--- a/third_party/PRESUBMIT.py
+++ b/third_party/PRESUBMIT.py
@@ -46,6 +46,8 @@ def _CheckThirdPartyReadmesUpdated(input_api, output_api):
not local_path.startswith('third_party' + input_api.os_path.sep +
'WebKit' + input_api.os_path.sep) and
not local_path.startswith('third_party' + input_api.os_path.sep +
+ 'mojo' + input_api.os_path.sep) and
+ not local_path.startswith('third_party' + input_api.os_path.sep +
'boringssl' + input_api.os_path.sep)):
files.append(f)
if local_path.endswith("README.chromium"):