Ignore NewApi and InlinedApi Android Lint warnings. They will be enabled once platform-tools is rolled. See crbug.com/739746. This is needed because of6e3237729aRoll chromium_revision 1238950005..fd8f995919 (488218:488572) Change log:1238950005..fd8f995919Full diff:1238950005..fd8f995919Changed dependencies: * src/base:9590d17c3d..ff92886fed* src/build:36a077c7b3..995d75919a* src/ios:342e327240..d8aae3bcad* src/testing:718dcd6f4b..639e83fbfc* src/third_party:8ac1939776..6fc19207c5* src/third_party/catapult:c7c5420fbc..e11a4d0d82* src/third_party/ffmpeg:d19b0ad9b2..97ebed6795* src/tools:030de9aca2..50cda24eacDEPS diff:1238950005..fd8f995919/DEPS No update to Clang. TBR= NOTRY=True BUG=None CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal Review-Url: https://codereview.webrtc.org/2986603002 Cr-Commit-Position: refs/heads/master@{#19119}
43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<lint>
|
|
<!-- These lint settings is for the Android linter that gets run by
|
|
lint_action.gypi on compile of WebRTC java code. All WebRTC java code
|
|
should lint cleanly for the issues below. -->
|
|
<!-- TODO(phoglund): make work with suppress.py or remove printout referring
|
|
to suppress.py. -->
|
|
|
|
<!-- TODO(crbug.com/739746): Remove once platform-tools is updated. -->
|
|
<issue id="NewApi" severity="ignore"/>
|
|
|
|
<issue id="UseSparseArrays" severity="ignore"/>
|
|
|
|
<issue id="LongLogTag" severity="ignore"/>
|
|
<issue id="Registered" severity="ignore"/>
|
|
<issue id="MissingPermission" severity="ignore"/>
|
|
<issue id="ApplySharedPref" severity="ignore"/>
|
|
<!-- TODO(sakal): Remove once the lint tool is updated. -->
|
|
<issue id="CommitPrefEdits" severity="ignore"/>
|
|
<issue id="UnusedResources" severity="ignore"/>
|
|
<issue id="IconColors" severity="ignore"/>
|
|
<issue id="IconDipSize" severity="ignore"/>
|
|
<issue id="IconDuplicatesConfig" severity="ignore"/>
|
|
<issue id="RelativeOverlap" severity="ignore"/>
|
|
<issue id="RtlCompat" severity="ignore"/>
|
|
<issue id="IconMissingDensityFolder" severity="ignore"/>
|
|
<issue id="OldTargetApi" severity="ignore"/>
|
|
|
|
<issue id="GoogleAppIndexingWarning" severity="ignore"/>
|
|
<issue id="MissingRegistered" severity="ignore"/>
|
|
|
|
<!-- These are just from the dummy AndroidManifest.xml we use for linting.
|
|
It's in the same directory as this file. -->
|
|
<issue id="MissingApplicationIcon" severity="ignore"/>
|
|
<issue id="AllowBackup" severity="ignore"/>
|
|
<issue id="MissingVersion" severity="ignore"/>
|
|
|
|
<!-- Ignore all lint errors in Chromium code. -->
|
|
<issue id="all">
|
|
<ignore path="**/org/chromium/**/*.java" />
|
|
</issue>
|
|
</lint>
|