mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
263 lines
8.0 KiB
Python
263 lines
8.0 KiB
Python
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
|
load("@rules_cc//cc:cc_test.bzl", "cc_test")
|
|
|
|
# Copyright 2020 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
licenses(["notice"])
|
|
|
|
cc_library(
|
|
name = "auth_status",
|
|
hdrs = ["auth_status.h"],
|
|
visibility = [
|
|
"//internal/auth:__pkg__",
|
|
"//internal/platform/implementation:__subpackages__",
|
|
"//location/nearby/cpp/sharing/clients/cpp:__subpackages__",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "account_info",
|
|
hdrs = ["account_info.h"],
|
|
visibility = [
|
|
"//internal/auth:__pkg__",
|
|
"//internal/platform/implementation:__subpackages__",
|
|
"//location/nearby/cpp/sharing/clients/cpp:__subpackages__",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "account_manager",
|
|
hdrs = ["account_manager.h"],
|
|
visibility = [
|
|
"//internal/account:__pkg__",
|
|
"//internal/platform/implementation:__subpackages__",
|
|
"//internal/test:__subpackages__",
|
|
"//location/nearby/cpp/sharing/clients/cpp:__subpackages__",
|
|
"//location/nearby/sharing/sdk/quick_share_server:__pkg__",
|
|
"//sharing:__subpackages__",
|
|
],
|
|
deps = [
|
|
":account_info",
|
|
":signin_attempt",
|
|
"@com_google_absl//absl/functional:any_invocable",
|
|
"@com_google_absl//absl/status",
|
|
"@com_google_absl//absl/status:statusor",
|
|
"@com_google_absl//absl/strings:string_view",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "signin_attempt",
|
|
hdrs = ["signin_attempt.h"],
|
|
visibility = [
|
|
"//internal/account:__pkg__",
|
|
"//internal/auth:__pkg__",
|
|
"//internal/platform/implementation:__subpackages__",
|
|
"//internal/test:__subpackages__",
|
|
"//location/nearby/cpp/sharing/clients/cpp:__subpackages__",
|
|
"//location/nearby/sharing/sdk/quick_share_server:__pkg__",
|
|
"//sharing:__subpackages__",
|
|
],
|
|
deps = [
|
|
":account_info",
|
|
":auth_status",
|
|
"@com_google_absl//absl/functional:any_invocable",
|
|
"@com_google_absl//absl/strings:string_view",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "types",
|
|
hdrs = [
|
|
"atomic_boolean.h",
|
|
"atomic_reference.h",
|
|
"bluetooth_adapter.h",
|
|
"cancelable.h",
|
|
"condition_variable.h",
|
|
"count_down_latch.h",
|
|
"crypto.h",
|
|
"device_info.h",
|
|
"executor.h",
|
|
"future.h",
|
|
"input_file.h",
|
|
"listenable_future.h",
|
|
"log_message.h",
|
|
"mutex.h",
|
|
"output_file.h",
|
|
"preferences_manager.h",
|
|
"scheduled_executor.h",
|
|
"settable_future.h",
|
|
"submittable_executor.h",
|
|
"system_clock.h",
|
|
"timer.h",
|
|
],
|
|
visibility = [
|
|
"//connections/implementation:__subpackages__",
|
|
"//connections/implementation/analytics:__subpackages__",
|
|
"//internal/crypto_cros:__pkg__",
|
|
"//internal/platform:__pkg__",
|
|
"//internal/platform/implementation:__subpackages__",
|
|
"//internal/preferences:__subpackages__",
|
|
"//internal/test:__subpackages__",
|
|
"//location/nearby/analytics/cpp:__subpackages__",
|
|
"//location/nearby/cpp/sharing:__subpackages__",
|
|
"//presence:__subpackages__",
|
|
"//sharing:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//internal/base:file_path",
|
|
"//internal/crypto_cros",
|
|
"//internal/platform:base",
|
|
"//internal/platform:mac_address",
|
|
"//internal/platform/implementation/shared:crypto", # Non-chromium impl
|
|
"@com_google_absl//absl/base:core_headers",
|
|
"@com_google_absl//absl/functional:any_invocable",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/time",
|
|
"@com_google_absl//absl/types:span",
|
|
"@nlohmann_json//:json",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "wifi_utils",
|
|
srcs = [
|
|
"wifi_utils.cc",
|
|
],
|
|
hdrs = [
|
|
"wifi.h",
|
|
"wifi_utils.h",
|
|
],
|
|
visibility = [
|
|
"//:__subpackages__",
|
|
],
|
|
deps = [
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/strings:str_format",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "comm",
|
|
hdrs = [
|
|
"awdl.h",
|
|
"ble.h",
|
|
"ble_v2.h",
|
|
"bluetooth_adapter.h",
|
|
"bluetooth_classic.h",
|
|
"credential_callbacks.h",
|
|
"credential_storage.h",
|
|
"http_loader.h",
|
|
"psk_info.h",
|
|
"server_sync.h",
|
|
"webrtc.h",
|
|
"wifi.h",
|
|
"wifi_direct.h",
|
|
"wifi_hotspot.h",
|
|
"wifi_lan.h",
|
|
],
|
|
copts = ["-DNO_WEBRTC"],
|
|
visibility = [
|
|
"//connections/implementation:__subpackages__",
|
|
"//internal/network:__subpackages__",
|
|
"//internal/platform:__pkg__",
|
|
"//internal/platform/implementation:__subpackages__",
|
|
"//presence:__subpackages__",
|
|
"//presence/implementation:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//connections/implementation/proto:offline_wire_formats_cc_proto",
|
|
"//internal/platform:base",
|
|
"//internal/platform:cancellation_flag",
|
|
"//internal/platform:mac_address",
|
|
"//internal/platform:uuid",
|
|
"//internal/proto:credential_cc_proto",
|
|
"//internal/proto:local_credential_cc_proto",
|
|
# TODO: Support WebRTC
|
|
"@com_google_absl//absl/base:core_headers",
|
|
"@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",
|
|
"@com_google_absl//absl/time",
|
|
"@com_google_absl//absl/types:optional",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "platform",
|
|
hdrs = [
|
|
"platform.h",
|
|
],
|
|
defines = ["NO_WEBRTC"],
|
|
visibility = [
|
|
"//connections/implementation:__subpackages__",
|
|
"//internal:__subpackages__",
|
|
"//internal/network:__subpackages__",
|
|
"//internal/platform:__pkg__",
|
|
"//internal/platform/implementation:__subpackages__",
|
|
"//location/nearby/analytics/cpp:__subpackages__",
|
|
"//location/nearby/apps/better_together/plugins/preferences_native:__subpackages__",
|
|
"//location/nearby/cpp/sharing:__subpackages__",
|
|
],
|
|
deps = [
|
|
":comm",
|
|
":types",
|
|
"//internal/platform:base",
|
|
"@com_google_absl//absl/status:statusor",
|
|
"@com_google_absl//absl/strings",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "platform_impl",
|
|
testonly = True,
|
|
tags = ["keep_dep"], # Prevent build_cleaner from removing the dependency.
|
|
visibility = [
|
|
"//:__subpackages__",
|
|
"//connections/implementation:__subpackages__",
|
|
"//location/nearby/analytics/cpp:__subpackages__",
|
|
"//location/nearby/apps/better_together/plugins/preferences_native:__subpackages__",
|
|
"//location/nearby/cpp/sharing:__subpackages__",
|
|
],
|
|
deps = [] + select({
|
|
"@platforms//os:linux": [
|
|
"//internal/platform/implementation/linux:linux_platform_impl",
|
|
],
|
|
"@platforms//os:windows": [
|
|
"//internal/platform/implementation/windows",
|
|
],
|
|
# Add other platforms as needed
|
|
"//conditions:default": [
|
|
"//internal/platform/implementation/g3",
|
|
],
|
|
}),
|
|
)
|
|
|
|
cc_test(
|
|
name = "wifi_utils_test",
|
|
size = "small",
|
|
timeout = "moderate",
|
|
srcs = ["wifi_utils_test.cc"],
|
|
shard_count = 8,
|
|
deps = [
|
|
":wifi_utils",
|
|
"@com_github_protobuf_matchers//protobuf-matchers",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|