From b9658c343c3b85521f4d49a76b7fc7c1d9a930a9 Mon Sep 17 00:00:00 2001 From: "primiano@chromium.org" Date: Tue, 6 Oct 2015 10:50:13 +0000 Subject: [PATCH] presubmit: unblacklist third_party/WebKit The current DEFAULT_BLACKLIST in presubmit_support blacklists by default third_party/.* in every repo. This requires an adjustement after the blink merge, as it causing all the blink presubmits to become noops. BUG=539768 Review URL: https://codereview.chromium.org/1382993004 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@297030 0039d316-1c4b-4281-b951-d872f2087c98 --- presubmit_support.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/presubmit_support.py b/presubmit_support.py index 523bb79a1..3f873c0d8 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[\\\/].*",