Files
nearby/sharing/internal/test/BUILD
T
2025-10-08 13:51:51 -07:00

83 lines
2.7 KiB
Python

# Copyright 2023 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.
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")
licenses(["notice"])
cc_library(
name = "nearby_test",
testonly = True,
srcs = [
"fake_context.cc",
"fake_preference_manager.cc",
"fake_public_certificate_db.cc",
],
hdrs = [
"fake_bluetooth_adapter.h",
"fake_bluetooth_adapter_observer.h",
"fake_connectivity_manager.h",
"fake_context.h",
"fake_fast_initiation_manager.h",
"fake_preference_manager.h",
"fake_public_certificate_db.h",
],
visibility = ["//visibility:public"],
deps = [
"//internal/base",
"//internal/base:bluetooth_address",
"//internal/platform:mac_address",
"//internal/platform:types",
"//internal/test",
"//sharing/internal/api:platform",
"//sharing/internal/public:types",
"//sharing/proto:share_cc_proto",
"@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/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
"@com_google_absl//absl/types:span",
],
)
cc_test(
name = "nearby_test_test",
size = "small",
timeout = "short",
srcs = [
"fake_bluetooth_adapter_test.cc",
"fake_connectivity_manager_test.cc",
"fake_context_test.cc",
"fake_fast_initiation_manager_test.cc",
],
shard_count = 8,
deps = [
":nearby_test",
"//internal/platform:mac_address",
"//internal/platform:types",
"//internal/platform/implementation:platform_impl",
"//sharing/internal/api:platform",
"//sharing/internal/public:types",
"@com_github_protobuf_matchers//protobuf-matchers",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
"@com_google_googletest//:gtest_main",
],
)