Files
nearby/fastpair/common/BUILD
T

39 lines
801 B
Python

licenses(["notice"])
cc_library(
name = "common",
srcs = [
"fast_pair_device.cc",
"fast_pair_http_result.cc",
"protocol.cc",
],
hdrs = [
"constant.h",
"fast_pair_device.h",
"fast_pair_http_result.h",
"protocol.h",
],
visibility = [
"//fastpair:__subpackages__",
],
deps = [
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/status",
],
)
cc_test(
name = "unit_test",
size = "small",
srcs = [
"fast_pair_device_test.cc",
],
shard_count = 16,
deps = [
":common",
"@com_github_protobuf_matchers//protobuf-matchers",
"@com_google_absl//absl/strings",
"@com_google_googletest//:gtest_main",
],
)