Index: presubmit_canned_checks.py |
diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py |
index 5516ca3aae5a5596bfd102a6416d0be1fe47a38a..995aa45504c0ac1f1382d3cd98ee5b2812e125c1 100644 |
--- a/presubmit_canned_checks.py |
+++ b/presubmit_canned_checks.py |
@@ -318,6 +318,8 @@ def CheckLongLines(input_api, output_api, maxlen=80, source_file_filter=None): |
""" |
maxlens = { |
'java': 100, |
+ # This is specifically for Android's handwritten makefiles (Android.mk). |
+ 'mk': 200, |
'': maxlen, |
} |
# Note: these are C++ specific but processed on all languages. :( |