mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 15:16:12 -04:00
82 lines
2.6 KiB
Python
82 lines
2.6 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/platform:mac_address",
|
|
"//internal/platform:types",
|
|
"//internal/test",
|
|
"//sharing/internal/api:platform",
|
|
"//sharing/internal/public:pref_names",
|
|
"//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/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",
|
|
],
|
|
)
|