Video call improvements

This commit is contained in:
Ali 2020-08-21 21:11:29 +01:00
parent bb974d4cc1
commit bead41710b
35 changed files with 2734 additions and 2545 deletions

View file

@ -1,3 +1,5 @@
use_gn_build = True
webrtc_libs = [
"libwebrtc.a",
]
@ -70,7 +72,7 @@ genrule(
)
cc_library(
name = "webrtc_lib_gn",
name = "webrtc_lib_gn" if not use_gn_build else "webrtc_lib",
srcs = [":" + x for x in webrtc_libs],
visibility = ["//visibility:public"],
)
@ -2182,7 +2184,7 @@ objc_library(
)
objc_library(
name = "webrtc_lib",
name = "webrtc_lib_custom" if use_gn_build else "webrtc_lib",
enable_modules = True,
module_name = "webrtc",
srcs = combined_sources,