Get rid of recently added rtc_openssl_is_boringssl build argument.

It's unlikely to be used, so just rely on rtc_build_ssl instead.

No-Try: True
Bug: webrtc:11410
Change-Id: I74049bebfdde61b713eb187a48eabedf04da9369
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/197040
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#32826}
This commit is contained in:
Taylor Brandstetter 2020-12-11 11:30:43 -08:00 committed by Commit Bot
parent b985748f66
commit c70bd1837d
2 changed files with 2 additions and 5 deletions

View File

@ -960,7 +960,8 @@ rtc_library("rtc_base") {
"unique_id_generator.h", "unique_id_generator.h",
] ]
if (rtc_openssl_is_boringssl) { # If we are building the SSL library ourselves, we know it's BoringSSL.
if (rtc_build_ssl) {
sources += [ sources += [
"boringssl_certificate.cc", "boringssl_certificate.cc",
"boringssl_certificate.h", "boringssl_certificate.h",

View File

@ -227,10 +227,6 @@ declare_args() {
rtc_libvpx_build_vp9 = !build_with_mozilla rtc_libvpx_build_vp9 = !build_with_mozilla
rtc_build_opus = !build_with_mozilla rtc_build_opus = !build_with_mozilla
rtc_build_ssl = !build_with_mozilla rtc_build_ssl = !build_with_mozilla
# Can be set to true if rtc_build_ssl is false, but externally provided
# openssl library is boringssl, to enable the use of boringssl-specific code.
rtc_openssl_is_boringssl = !build_with_mozilla
rtc_build_usrsctp = !build_with_mozilla rtc_build_usrsctp = !build_with_mozilla
# Enable libevent task queues on platforms that support it. # Enable libevent task queues on platforms that support it.