From 86ac1df5ae17065f9e6f399cb9e4854aecc85cda Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Tue, 27 Aug 2024 10:27:00 -0700 Subject: [PATCH] Fix libsrtp openssl build which broke since libsrtp included openssl/srtp.h instead of its own srtp.h due to the order of include directories BUG=webrtc:42234521 Change-Id: Idc5cba2114febd1e0835d201b6c23424a88e62d1 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/360705 Reviewed-by: Florent Castelli Reviewed-by: Mirko Bonadei Commit-Queue: Philipp Hancke Cr-Commit-Position: refs/heads/main@{#42913} --- pc/BUILD.gn | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pc/BUILD.gn b/pc/BUILD.gn index f16e2c15f4..2d43148cd4 100644 --- a/pc/BUILD.gn +++ b/pc/BUILD.gn @@ -182,10 +182,6 @@ rtc_source_set("external_hmac") { ] if (rtc_build_libsrtp) { deps += [ "//third_party/libsrtp" ] - configs = [] - if (!rtc_build_ssl) { - configs += [ "..:external_ssl_library" ] - } } } @@ -615,10 +611,6 @@ rtc_source_set("srtp_session") { ] if (rtc_build_libsrtp) { deps += [ "//third_party/libsrtp" ] - configs = [] - if (!rtc_build_ssl) { - configs += [ "..:external_ssl_library" ] - } } } rtc_source_set("srtp_transport") {