mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
Imported from GitHub PR https://github.com/google/nearby/pull/2404 Copybara import of the project: -- a6fbb3c396321c0b9012b787323f5f2ff652fd8f by Nick Bourdakos <bourdakos1@gmail.com>: Add license header to all source files Merging this change closes #2404 PiperOrigin-RevId: 623540004
150 lines
3.9 KiB
Python
150 lines
3.9 KiB
Python
# Copyright 2022 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 = "common",
|
|
srcs = [
|
|
"account_key_filter.cc",
|
|
"battery_notification.cc",
|
|
"fast_pair_device.cc",
|
|
"fast_pair_http_result.cc",
|
|
"fast_pair_prefs.cc",
|
|
"fast_pair_switches.cc",
|
|
"pair_failure.cc",
|
|
"protocol.cc",
|
|
],
|
|
hdrs = [
|
|
"account_key.h",
|
|
"account_key_filter.h",
|
|
"battery_notification.h",
|
|
"constant.h",
|
|
"device_metadata.h",
|
|
"fast_pair_device.h",
|
|
"fast_pair_http_result.h",
|
|
"fast_pair_prefs.h",
|
|
"fast_pair_switches.h",
|
|
"fast_pair_version.h",
|
|
"non_discoverable_advertisement.h",
|
|
"pair_failure.h",
|
|
"protocol.h",
|
|
],
|
|
visibility = [
|
|
"//fastpair:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//fastpair/proto:fastpair_cc_proto",
|
|
"//internal/crypto_cros",
|
|
"//internal/platform:types",
|
|
"//internal/preferences",
|
|
"@com_google_absl//absl/base:core_headers",
|
|
"@com_google_absl//absl/container:flat_hash_map",
|
|
"@com_google_absl//absl/status",
|
|
"@com_google_absl//absl/strings",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "account_key_filter_test",
|
|
size = "small",
|
|
srcs = [
|
|
"account_key_filter_test.cc",
|
|
],
|
|
shard_count = 16,
|
|
deps = [
|
|
":common",
|
|
"//internal/platform/implementation/g3", # build_cleaner: keep
|
|
"@com_github_protobuf_matchers//protobuf-matchers",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "fast_pair_device_test",
|
|
size = "small",
|
|
srcs = [
|
|
"fast_pair_device_test.cc",
|
|
],
|
|
shard_count = 16,
|
|
deps = [
|
|
":common",
|
|
"//fastpair/proto:fastpair_cc_proto",
|
|
"//internal/platform/implementation/g3", # build_cleaner: keep
|
|
"@com_github_protobuf_matchers//protobuf-matchers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "pair_failure_test",
|
|
size = "small",
|
|
srcs = [
|
|
"pair_failure_test.cc",
|
|
],
|
|
shard_count = 16,
|
|
deps = [
|
|
":common",
|
|
"//internal/platform/implementation/g3", # build_cleaner: keep
|
|
"@com_github_protobuf_matchers//protobuf-matchers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "battery_notification_test",
|
|
size = "small",
|
|
srcs = [
|
|
"battery_notification_test.cc",
|
|
],
|
|
shard_count = 16,
|
|
deps = [
|
|
":common",
|
|
"//internal/platform/implementation/g3", # build_cleaner: keep
|
|
"@com_github_protobuf_matchers//protobuf-matchers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "fast_pair_prefs_test",
|
|
size = "small",
|
|
srcs = [
|
|
"fast_pair_prefs_test.cc",
|
|
],
|
|
shard_count = 16,
|
|
deps = [
|
|
":common",
|
|
"//internal/platform/implementation/g3", # build_cleaner: keep
|
|
"@com_github_protobuf_matchers//protobuf-matchers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "fast_pair_switches_test",
|
|
size = "small",
|
|
srcs = [
|
|
"fast_pair_switches_test.cc",
|
|
],
|
|
shard_count = 16,
|
|
deps = [
|
|
":common",
|
|
"//internal/platform/implementation/g3", # build_cleaner: keep
|
|
"@com_github_protobuf_matchers//protobuf-matchers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|