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

Unified Diff: build/android/lint/suppressions.xml

Issue 2102183003: 🎠 Suppress lint warnings for policy resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress MissingTranslation lint warnings for policy resources Created 4 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/lint/suppressions.xml
diff --git a/build/android/lint/suppressions.xml b/build/android/lint/suppressions.xml
index db428467509d698f3d01aa15646a193f0f4c1fad..46805ee590ae11961ecf160a963a86ad2ff2634d 100644
--- a/build/android/lint/suppressions.xml
+++ b/build/android/lint/suppressions.xml
@@ -75,6 +75,10 @@ Still reading?
<issue id="MissingApplicationIcon" severity="ignore"/>
<issue id="MissingPermission" severity="ignore"/>
<issue id="MissingRegistered" severity="ignore"/>
+ <issue id="MissingTranslation">
+ <!-- http://crbug.com/450548 -->
+ <ignore regexp=".*restriction_values.xml.*" />
+ </issue>
<issue id="MissingVersion">
<ignore path="AndroidManifest.xml"/>
</issue>
@@ -102,6 +106,9 @@ Still reading?
</issue>
<issue id="SetJavaScriptEnabled" severity="ignore"/>
<issue id="UnusedResources">
+ <!-- Used by Android's policies system -->
+ <ignore regexp="restriction_values.xml" />
+
<!-- Used by chrome/android/java/AndroidManifest.xml -->
<ignore path="chrome/android/java/res/drawable/window_background.xml" />
<ignore path="chrome/android/java/res/xml/bookmark_widget_info.xml" />
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698