aboutsummaryrefslogtreecommitdiff
path: root/PRESUBMIT.py
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2017-03-08 14:04:23 +0000
committerBen Murdoch <benm@google.com>2017-03-13 15:00:19 +0000
commitc8c1d9e03f4babd16833b0f8ccf6aab5fa6e8c7a (patch)
tree0626f6eea22bedac0b27890e0a710e790758a92d /PRESUBMIT.py
parent3ed978da7c05e4bc0a6b95033aeea85c7e480adf (diff)
downloadv8-c8c1d9e03f4babd16833b0f8ccf6aab5fa6e8c7a.tar.gz
Merge V8 5.6.326.50
Test: manual, ran D8, tested connecting through PAC proxy. Change-Id: I6067097f8ded999e9930a7dfd2fdc3733d7c6284
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r--PRESUBMIT.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 78e7482e..ad218330 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -67,7 +67,6 @@ def _V8PresubmitChecks(input_api, output_api):
input_api.PresubmitLocalPath(), 'tools'))
from presubmit import CppLintProcessor
from presubmit import SourceProcessor
- from presubmit import CheckExternalReferenceRegistration
from presubmit import CheckAuthorizedAuthor
from presubmit import CheckStatusFiles
@@ -78,9 +77,6 @@ def _V8PresubmitChecks(input_api, output_api):
results.append(output_api.PresubmitError(
"Copyright header, trailing whitespaces and two empty lines " \
"between declarations check failed"))
- if not CheckExternalReferenceRegistration(input_api.PresubmitLocalPath()):
- results.append(output_api.PresubmitError(
- "External references registration check failed"))
if not CheckStatusFiles(input_api.PresubmitLocalPath()):
results.append(output_api.PresubmitError("Status file check failed"))
results.extend(CheckAuthorizedAuthor(input_api, output_api))