Commit ad740d92 authored by Robert Ma's avatar Robert Ma Committed by Commit Bot

[blink] Ignore webidl2 of WPT in PRESUBMIT checks

The new exception is added in preparation of:
https://github.com/web-platform-tests/wpt/pull/16864

Also remove the unnecessary slashes from the regexes: '\' does not need
to be escaped again in Python raw strings.

Change-Id: I3453468b138f40e2adf1c7aaffa0076fbdb5f649
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1636390
Commit-Queue: Philip Jägenstedt <foolip@chromium.org>
Reviewed-by: default avatarPhilip Jägenstedt <foolip@chromium.org>
Cr-Commit-Position: refs/heads/master@{#665527}
parent c32c2fae
...@@ -25,9 +25,10 @@ except IOError: ...@@ -25,9 +25,10 @@ except IOError:
_EXCLUDED_PATHS = ( _EXCLUDED_PATHS = (
# These directories are created and updated via a script. # These are third-party dependencies that we don't directly control.
r'^third_party[\\\/]blink[\\\/]tools[\\\/]blinkpy[\\\/]third_party[\\\/]wpt[\\\/]wpt[\\\/].*', r'^third_party[\\/]blink[\\/]tools[\\/]blinkpy[\\/]third_party[\\/]wpt[\\/]wpt[\\/].*',
r'^third_party[\\\/]blink[\\\/]web_tests[\\\/]external[\\\/]wpt[\\\/]tools[\\\/].*', r'^third_party[\\/]blink[\\/]web_tests[\\/]external[\\/]wpt[\\/]tools[\\/].*',
r'^third_party[\\/]blink[\\/]web_tests[\\/]external[\\/]wpt[\\/]resources[\\/]webidl2[\\/].*',
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment