Index: third_party/WebKit/PRESUBMIT.py |
diff --git a/third_party/WebKit/PRESUBMIT.py b/third_party/WebKit/PRESUBMIT.py |
index ca89625707527930245d17f28f2dd4f9d588bfc8..74ed901839734a7cf23330ba8d2d1e2fb607f04f 100644 |
--- a/third_party/WebKit/PRESUBMIT.py |
+++ b/third_party/WebKit/PRESUBMIT.py |
@@ -8,6 +8,7 @@ See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
for more details about the presubmit API built into gcl. |
""" |
+import os |
import sys |
@@ -113,11 +114,24 @@ def _CheckTestExpectations(input_api, output_api): |
def _CheckStyle(input_api, output_api): |
+ # These files were moved from Chromium side (crbug/548254). |
+ # TODO(hajimehoshi): We aim to remove these files since these are glue files |
+ # and no longer needed. |
kinuko
2016/02/04 11:25:34
If we're going to use this list for more files tha
hajimehoshi
2016/02/04 12:17:52
Done.
|
+ ignore = [ |
+ 'third_party/WebKit/Source/platform/WebMemoryAllocatorDumpImpl', |
+ 'third_party/WebKit/Source/platform/WebMemoryDumpProviderAdapter', |
+ 'third_party/WebKit/Source/platform/WebProcessMemoryDumpImpl', |
+ ] |
+ files = [] |
+ for f in input_api.AffectedFiles(): |
+ if any([f.LocalPath().startswith(os.path.normpath(d)) for d in ignore]): |
+ continue |
+ files.append(f.LocalPath()) |
+ |
style_checker_path = input_api.os_path.join(input_api.PresubmitLocalPath(), |
'Tools', 'Scripts', 'check-webkit-style') |
args = ([input_api.python_executable, style_checker_path, '--diff-files'] |
- + [input_api.os_path.join('..', '..', f.LocalPath()) |
- for f in input_api.AffectedFiles()]) |
+ + [input_api.os_path.join('..', '..', f) for f in files]) |
results = [] |
try: |