From e19dd3c866842f26feafa3fad52fe65418df3845 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Mon, 14 Oct 2024 06:29:43 +0000 Subject: [PATCH] Add MB config for use_custom_libcxx=false Bug: b/373262005 Change-Id: Ib8ff48b0eda7b18b9d717b91e4af484cce9988df Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/365480 Commit-Queue: Jeremy Leconte Commit-Queue: Mirko Bonadei Auto-Submit: Mirko Bonadei Reviewed-by: Jeremy Leconte Cr-Commit-Position: refs/heads/main@{#43228} --- tools_webrtc/mb/mb_config.pyl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools_webrtc/mb/mb_config.pyl b/tools_webrtc/mb/mb_config.pyl index 34de19284f..f66a6096f8 100644 --- a/tools_webrtc/mb/mb_config.pyl +++ b/tools_webrtc/mb/mb_config.pyl @@ -58,6 +58,7 @@ 'dummy_audio_file_devices_no_protobuf_x64', 'rtti_no_sctp': 'rtti_no_sctp_x64', 'openssl': 'openssl_x64', + 'libstdcpp': 'libstdcpp_x64', }, 'Linux Asan': 'asan_lsan_clang_release_bot_x64', 'Linux MSan': 'msan_clang_release_bot_x64', @@ -187,6 +188,7 @@ 'disable_trace_events': 'disable_trace_events_x64', 'perfetto': 'perfetto_x64', 'openssl': 'openssl_x64', + 'libstdcpp': 'libstdcpp_x64', }, 'linux_msan': 'msan_clang_release_bot_x64', 'linux_rel': 'release_bot_x64', @@ -340,6 +342,7 @@ 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264', 'pure_release_bot', 'x64', 'h265' ], + 'libstdcpp_x64': ['debug_bot', 'x64', 'no_custom_libcxx'], 'mac_asan_clang_release_bot_x64': [ 'asan', 'clang', @@ -495,6 +498,9 @@ 'no_build_ssl': { 'gn_args': 'rtc_build_ssl=false libsrtp_build_boringssl=false', }, + 'no_custom_libcxx': { + 'gn_args': 'use_custom_libcxx=false', + }, 'no_ios_code_signing': { 'gn_args': 'ios_enable_code_signing=false', },