summaryrefslogtreecommitdiff
path: root/chromium/third_party/PRESUBMIT.py
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-01-25 11:39:07 +0100
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-01-25 15:20:42 +0000
commit6c91641271e536ffaa88a1dff5127e42ee99a91e (patch)
tree703d9dd49602377ddc90cbf886aad37913f2496b /chromium/third_party/PRESUBMIT.py
parentb145b7fafd36f0c260d6a768c81fc14e32578099 (diff)
downloadqtwebengine-chromium-6c91641271e536ffaa88a1dff5127e42ee99a91e.tar.gz
BASELINE: Update Chromium to 49.0.2623.23
Also adds missing printing sources. Change-Id: I3726b8f0c7d6751c9fc846096c571fadca7108cd Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/PRESUBMIT.py')
-rw-r--r--chromium/third_party/PRESUBMIT.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/chromium/third_party/PRESUBMIT.py b/chromium/third_party/PRESUBMIT.py
index e42ad8a474f..e7b8dd365f2 100644
--- a/chromium/third_party/PRESUBMIT.py
+++ b/chromium/third_party/PRESUBMIT.py
@@ -33,7 +33,7 @@ def LicenseIsCompatibleWithAndroid(input_api, license):
def _CheckThirdPartyReadmesUpdated(input_api, output_api):
"""
Checks to make sure that README.chromium files are properly updated
- when dependancies in third_party are modified.
+ when dependencies in third_party are modified.
"""
readmes = []
files = []
@@ -44,7 +44,11 @@ def _CheckThirdPartyReadmesUpdated(input_api, output_api):
continue
if (local_path.startswith('third_party' + input_api.os_path.sep) and
not local_path.startswith('third_party' + input_api.os_path.sep +
- 'WebKit' + 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"):
readmes.append(f)