Emit landmine for Android builds to solve compile lint errors

The recent roll in https://codereview.webrtc.org/2293863002/ seems to cause
build errors on some Android bots. Clobbering all of them should solve it.

TBR=ehmaldonado@webrtc.org
NOTRY=True

Review-Url: https://codereview.webrtc.org/2300643002
Cr-Commit-Position: refs/heads/master@{#14000}
This commit is contained in:
kjellander 2016-08-31 08:24:03 -07:00 committed by Commit bot
parent 25f32e723a
commit 08352ab8c5

View File

@ -38,6 +38,9 @@ def print_landmines():
# landmine.
# See the Chromium version in src/build/get_landmines.py for usage examples.
print 'Clobber to remove out/{Debug,Release}/args.gn (webrtc:5070)'
if platform() == 'android':
print ('Clobber to remove artifacts on Android causing lint errors after '
'rolling in https://codereview.webrtc.org/2293863002')
def main():