Files
nearby/fastpair/internal/test/BUILD
T
hai007 d6a6b7e1c3 Automated Code Change
PiperOrigin-RevId: 621745483
2024-04-03 23:18:34 -07:00

43 lines
1.1 KiB
Python

licenses(["notice"])
cc_library(
name = "nearby_fastpair_test",
hdrs = [
"fast_pair_fake_http_client.h",
],
copts = [
"-Ithird_party",
],
visibility = ["//visibility:private"],
deps = [
"//internal/network:types",
"@com_google_absl//absl/functional:any_invocable",
"@com_google_absl//absl/status",
"@com_google_absl//absl/status:statusor",
],
)
cc_test(
name = "nearby_fastpair_test_test",
size = "small",
timeout = "short",
srcs = [
"fast_pair_fake_http_client_test.cc",
],
copts = [
"-Ithird_party",
],
deps = [
":nearby_fastpair_test",
"//internal/network:types",
"//internal/platform/implementation/g3",
"@com_github_protobuf_matchers//protobuf-matchers",
"@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_googletest//:gtest_main",
],
)