From 47f0799059607b4663391b656644d77ddbf16201 Mon Sep 17 00:00:00 2001 From: Henrik Kjellander Date: Wed, 22 Feb 2017 10:17:58 +0100 Subject: [PATCH] Landmine to possibly resolve iOS build problem This is a speculative change to see if it solves the iOS compile errors seen in https://codereview.webrtc.org/2709573003/ BUG=None TBR=deadbeef@webrtc.org Review-Url: https://codereview.webrtc.org/2705333003 . Cr-Commit-Position: refs/heads/master@{#16767} --- tools-webrtc/get_landmines.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools-webrtc/get_landmines.py b/tools-webrtc/get_landmines.py index beefeff170..cdbb406053 100755 --- a/tools-webrtc/get_landmines.py +++ b/tools-webrtc/get_landmines.py @@ -49,6 +49,10 @@ def print_landmines(): print 'Clobber to resolve some issues with corrupt .pdb files on bots.' print 'Clobber due to corrupt .pdb files (after #14623)' print 'Clobber due to Win 64-bit Debug linking error (crbug.com/668961)' + if platform() == 'mac': + # platform == 'ios' doesn't work since it assumes GYP_DEFINES is set, which + # is no longer the case. + print 'Clobber due to iOS compile errors (crbug.com/694721)' def main():