From 08352ab8c51b26bc7ac2d9e0a130c9589793e6c6 Mon Sep 17 00:00:00 2001 From: kjellander Date: Wed, 31 Aug 2016 08:24:03 -0700 Subject: [PATCH] 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} --- webrtc/build/get_landmines.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webrtc/build/get_landmines.py b/webrtc/build/get_landmines.py index 495b3d1dba..49a61bb314 100755 --- a/webrtc/build/get_landmines.py +++ b/webrtc/build/get_landmines.py @@ -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():