From 910540d55a0b63ba94a422c85409d043849f4c1d Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Mon, 11 Jun 2018 20:22:07 -0700 Subject: [PATCH] Explicitly setting use_lld=false on MSVC bots. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to unblock the Chromium Roll, WebRTC should set use_lld=false when MSVC is used (as discussed here [1]). [1] - https://chromium-review.googlesource.com/c/chromium/src/+/1092611 Bug: None Change-Id: Ia052d3d8842871c3051fe36991396976f5839f4c Reviewed-on: https://webrtc-review.googlesource.com/83102 Reviewed-by: Patrik Höglund Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#23582} --- tools_webrtc/mb/mb_config.pyl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools_webrtc/mb/mb_config.pyl b/tools_webrtc/mb/mb_config.pyl index 3a2d4169cf..c068c33986 100644 --- a/tools_webrtc/mb/mb_config.pyl +++ b/tools_webrtc/mb/mb_config.pyl @@ -360,16 +360,16 @@ 'gn', 'clang', 'openh264_release_bot', 'x64', ], 'win_msvc_debug_bot_x86': [ - 'gn', 'no_clang', 'openh264_debug_bot', 'x86', + 'gn', 'no_clang', 'openh264_debug_bot', 'x86', 'no_lld', ], 'win_msvc_release_bot_x86': [ - 'gn', 'no_clang', 'openh264_release_bot', 'x86', + 'gn', 'no_clang', 'openh264_release_bot', 'x86', 'no_lld', ], 'win_msvc_debug_bot_x64': [ - 'gn', 'no_clang', 'openh264_debug_bot', 'x64', + 'gn', 'no_clang', 'openh264_debug_bot', 'x64', 'no_lld' ], 'win_msvc_release_bot_x64': [ - 'gn', 'no_clang', 'openh264_release_bot', 'x64', + 'gn', 'no_clang', 'openh264_release_bot', 'x64', 'no_lld', ], 'win_asan_clang_release_bot_x86': [ 'gn', 'asan', 'clang', 'full_symbols', 'openh264_release_bot', 'x86',