Index: presubmit_support.py |
diff --git a/presubmit_support.py b/presubmit_support.py |
index 523bb79a1245f4c30534bea2e90ac447dda49aba..3f873c0d83af11246dba1c788b6ff6d24912b102 100755 |
--- a/presubmit_support.py |
+++ b/presubmit_support.py |
@@ -245,7 +245,8 @@ class InputApi(object): |
DEFAULT_BLACK_LIST = ( |
r"testing_support[\\\/]google_appengine[\\\/].*", |
r".*\bexperimental[\\\/].*", |
- r".*\bthird_party[\\\/].*", |
+ # Exclude third_party/.* but NOT third_party/WebKit (crbug.com/539768). |
+ r".*\bthird_party[\\\/](?!WebKit[\\\/]).*", |
# Output directories (just in case) |
r".*\bDebug[\\\/].*", |
r".*\bRelease[\\\/].*", |