Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: build/android/gyp/lint.py

Issue 132473003: [Android] Do not fail the build due to lint issues. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add back issues with 'warning' severity Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/lint/suppressions.xml » ('j') | build/android/lint/suppressions.xml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/lint.py
diff --git a/build/android/gyp/lint.py b/build/android/gyp/lint.py
index 631ceaff5374dae91b514c1e3c4c10f41a2d2b79..339d98fd6e4fe7d87c61b3fe145defb467b1dac1 100755
--- a/build/android/gyp/lint.py
+++ b/build/android/gyp/lint.py
@@ -110,7 +110,8 @@ def _RunLint(lint_path, config_path, processed_config_path, manifest_path,
'lint', 'suppress.py')),
_RelativizePath(result_path)))
print >> sys.stderr, msg
- return 1
+ # Lint errors do not fail the build.
+ return 0
return 0
« no previous file with comments | « no previous file | build/android/lint/suppressions.xml » ('j') | build/android/lint/suppressions.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698