Internal change

PiperOrigin-RevId: 529464527
This commit is contained in:
Nick Bourdakos
2023-05-04 11:24:39 -07:00
committed by Copybara-Service
parent d91904d79d
commit 58772e95f9
6 changed files with 34 additions and 43 deletions
+2 -6
View File
@@ -57,6 +57,7 @@ cc_library(
"//internal/platform:types",
"//internal/platform:uuid",
"//proto/mediums:web_rtc_signaling_frames_cc_proto",
# TODO: Support WebRTC
"@com_google_absl//absl/container:btree",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
@@ -65,12 +66,7 @@ cc_library(
"@com_google_absl//absl/strings:str_format",
"@com_google_absl//absl/time",
"@com_google_absl//absl/types:optional",
] + select({
"@platforms//cpu:arm": [],
"//conditions:default": [
# TODO: Support WebRTC
],
}),
],
)
cc_library(
+12 -14
View File
@@ -26,7 +26,10 @@ cc_library(
"session_description_wrapper.h",
"signaling_frames.h",
],
copts = ["-DCORE_ADAPTER_DLL"] + ["-DNO_WEBRTC"],
copts = [
"-DCORE_ADAPTER_DLL",
"-DNO_WEBRTC",
],
visibility = [
"//connections/implementation:__subpackages__",
],
@@ -39,14 +42,10 @@ cc_library(
"//internal/platform:logging",
"//internal/platform:types",
"//proto/mediums:web_rtc_signaling_frames_cc_proto",
# TODO: Support WebRTC
"@com_google_absl//absl/memory",
"@com_google_absl//absl/time",
] + select({
"@platforms//cpu:arm": [],
"//conditions:default": [
# TODO: Support WebRTC
],
}),
],
)
cc_library(
@@ -57,7 +56,10 @@ cc_library(
hdrs = [
"webrtc_socket_impl.h",
],
copts = ["-DCORE_ADAPTER_DLL"] + ["-DNO_WEBRTC"],
copts = [
"-DCORE_ADAPTER_DLL",
"-DNO_WEBRTC",
],
visibility = [
"//connections/implementation:__subpackages__",
],
@@ -65,12 +67,8 @@ cc_library(
"//connections:core_types",
"//internal/platform:base",
"//internal/platform:types",
] + select({
"@platforms//cpu:arm": [],
"//conditions:default": [
# TODO: Support WebRTC
],
}),
# TODO: Support WebRTC
],
)
cc_test(