Don't include clang package's libstdc++.so in sanitizer builds

LLVM binaries no longer need libstdc++.so as of https://crrev.com/c/3513603.

Change-Id: I00c18e3d24167a8edda1b0a25a9ef00c0c2bde52
Bug: chromium:1286289
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/255641
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#36212}
This commit is contained in:
Arthur Eubanks 2022-03-15 16:52:50 -07:00 committed by WebRTC LUCI CQ
parent 4f7a41de70
commit 160b37b70f

View file

@ -522,16 +522,6 @@ template("rtc_test") {
}
}
if (using_sanitizer) {
if (is_linux) {
if (!defined(invoker.data)) {
data = []
}
data +=
[ "//third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6" ]
}
}
# TODO(crbug.com/webrtc/13556): Adding the .app folder in the runtime_deps
# shoulnd't be necessary. this code should be removed and the same solution
# as Chromium should be used.