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
+6 -7
View File
@@ -403,7 +403,10 @@ cc_library(
"wifi_lan.h",
"wifi_utils.h",
],
copts = ["-DCORE_ADAPTER_DLL"] + ["-DNO_WEBRTC"],
copts = [
"-DCORE_ADAPTER_DLL",
"-DNO_WEBRTC",
],
visibility = [
"//connections:__subpackages__",
"//fastpair:__subpackages__",
@@ -420,18 +423,14 @@ cc_library(
"//internal/base",
"//internal/platform/implementation:comm",
"//internal/platform/implementation:platform",
# TODO: Support WebRTC
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/functional:any_invocable",
"@com_google_absl//absl/status",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/types:optional",
] + select({
"@platforms//cpu:arm": [],
"//conditions:default": [
# TODO: Support WebRTC
],
}),
],
)
cc_test(
+2 -6
View File
@@ -93,18 +93,14 @@ cc_library(
"//internal/platform:uuid",
"//internal/proto:credential_cc_proto",
"//internal/proto:local_credential_cc_proto",
# TODO: Support WebRTC
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/functional:any_invocable",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",
] + select({
"@platforms//cpu:arm": [],
"//conditions:default": [
# TODO: Support WebRTC
],
}),
],
)
cc_library(
+8 -9
View File
@@ -88,6 +88,13 @@ cc_library(
visibility = ["//visibility:private"],
deps = [
":types",
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/status",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",
"@com_google_absl//absl/synchronization",
"//internal/platform:base",
"//internal/platform:cancellation_flag",
"//internal/platform:logging",
@@ -96,17 +103,9 @@ cc_library(
"//internal/platform/implementation:comm",
"//internal/platform/implementation/shared:count_down_latch",
"//internal/proto:credential_cc_proto",
"//third_party/webrtc/files/stable/webrtc/api:create_peerconnection_factory", # buildcleaner: keep
"//third_party/webrtc/files/stable/webrtc/api:libjingle_peerconnection_api",
# TODO: Support WebRTC
"//third_party/webrtc/files/stable/webrtc/api/task_queue:default_task_queue_factory",
"//third_party/webrtc/files/stable/webrtc/rtc_base:checks",
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/container:flat_hash_set",
"@com_google_absl//absl/status",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",
"@com_google_absl//absl/synchronization",
],
)