Index: third_party/WebKit/PRESUBMIT.py |
diff --git a/third_party/WebKit/PRESUBMIT.py b/third_party/WebKit/PRESUBMIT.py |
index c385157250137e77a50f2f4711ed988f3c5acb39..030099cc632bbe8ef4477a2589b7452bbb95765c 100644 |
--- a/third_party/WebKit/PRESUBMIT.py |
+++ b/third_party/WebKit/PRESUBMIT.py |
@@ -22,7 +22,7 @@ def _CheckForNonBlinkVariantMojomIncludes(input_api, output_api): |
for f in input_api.AffectedFiles(): |
for line_num, line in f.ChangedContents(): |
m = pattern.match(line) |
- if m and m.group(1) != '-blink': |
+ if m and m.group(1) != '-blink' and m.group(1) != '-shared': |
errors.append(' %s:%d %s' % ( |
f.LocalPath(), line_num, line)) |