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

Side by Side Diff: tools_webrtc/android/suppressions.xml

Issue 2986603002: Ignore NewApi Android Lint warning + Roll chromium_revision (Closed)
Patch Set: Update Chromium revision. Created 3 years, 4 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 unified diff | Download patch
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <lint> 2 <lint>
3 <!-- These lint settings is for the Android linter that gets run by 3 <!-- These lint settings is for the Android linter that gets run by
4 lint_action.gypi on compile of WebRTC java code. All WebRTC java code 4 lint_action.gypi on compile of WebRTC java code. All WebRTC java code
5 should lint cleanly for the issues below. --> 5 should lint cleanly for the issues below. -->
6 <!-- TODO(phoglund): make work with suppress.py or remove printout referring 6 <!-- TODO(phoglund): make work with suppress.py or remove printout referring
7 to suppress.py. --> 7 to suppress.py. -->
8 8
9 <!-- TODO(crbug.com/739746): Remove once platform-tools is updated. -->
10 <issue id="NewApi" severity="ignore"/>
11
9 <issue id="UseSparseArrays" severity="ignore"/> 12 <issue id="UseSparseArrays" severity="ignore"/>
10 13
11 <issue id="LongLogTag" severity="ignore"/> 14 <issue id="LongLogTag" severity="ignore"/>
12 <issue id="Registered" severity="ignore"/> 15 <issue id="Registered" severity="ignore"/>
13 <issue id="MissingPermission" severity="ignore"/> 16 <issue id="MissingPermission" severity="ignore"/>
14 <issue id="ApplySharedPref" severity="ignore"/> 17 <issue id="ApplySharedPref" severity="ignore"/>
15 <!-- TODO(sakal): Remove once the lint tool is updated. --> 18 <!-- TODO(sakal): Remove once the lint tool is updated. -->
16 <issue id="CommitPrefEdits" severity="ignore"/> 19 <issue id="CommitPrefEdits" severity="ignore"/>
17 <issue id="UnusedResources" severity="ignore"/> 20 <issue id="UnusedResources" severity="ignore"/>
18 <issue id="IconColors" severity="ignore"/> 21 <issue id="IconColors" severity="ignore"/>
(...skipping 11 matching lines...) Expand all
30 It's in the same directory as this file. --> 33 It's in the same directory as this file. -->
31 <issue id="MissingApplicationIcon" severity="ignore"/> 34 <issue id="MissingApplicationIcon" severity="ignore"/>
32 <issue id="AllowBackup" severity="ignore"/> 35 <issue id="AllowBackup" severity="ignore"/>
33 <issue id="MissingVersion" severity="ignore"/> 36 <issue id="MissingVersion" severity="ignore"/>
34 37
35 <!-- Ignore all lint errors in Chromium code. --> 38 <!-- Ignore all lint errors in Chromium code. -->
36 <issue id="all"> 39 <issue id="all">
37 <ignore path="**/org/chromium/**/*.java" /> 40 <ignore path="**/org/chromium/**/*.java" />
38 </issue> 41 </issue>
39 </lint> 42 </lint>
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698