We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f8b817 commit 2acb43cCopy full SHA for 2acb43c
1 file changed
rtc_base/BUILD.gn
@@ -21,11 +21,18 @@ if (!rtc_build_ssl) {
21
include_dirs = [ rtc_ssl_root ]
22
23
# WebRTC.Framework on iOS is a shared library. It checks symbol during building.
24
- if (is_ios) {
25
- libs = [
26
- "crypto",
27
- "ssl",
28
- ]
+ if (is_ios || is_component_build) {
+ if (is_win) {
+ libs = [
+ "libcrypto.lib",
+ "libssl.lib",
29
+ ]
30
+ } else {
31
32
+ "crypto",
33
+ "ssl",
34
35
+ }
36
lib_dirs = [ rtc_ssl_root + "/../lib" ]
37
}
38
0 commit comments