From b1423c53bd64c7865d730624038705d940fdac1e Mon Sep 17 00:00:00 2001 From: danakj Date: Wed, 25 Nov 2015 14:10:13 -0800 Subject: 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} --- third_party/PRESUBMIT.py | 2 ++ 1 file changed, 2 insertions(+) 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"): -- cgit v1.1