aboutsummaryrefslogtreecommitdiff
path: root/pw_tls_client/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'pw_tls_client/BUILD.bazel')
-rw-r--r--pw_tls_client/BUILD.bazel14
1 files changed, 14 insertions, 0 deletions
diff --git a/pw_tls_client/BUILD.bazel b/pw_tls_client/BUILD.bazel
index bae944d12..d9d388db9 100644
--- a/pw_tls_client/BUILD.bazel
+++ b/pw_tls_client/BUILD.bazel
@@ -65,6 +65,7 @@ pw_cc_library(
srcs = ["fake_entropy.cc"],
deps = [
":entropy_facade",
+ "//pw_log",
],
)
@@ -77,6 +78,8 @@ pw_cc_library(
srcs = [
"build_time.cc",
],
+ # TODO(b/257527057): Get this to build.
+ tags = ["manual"],
)
pw_cc_library(
@@ -93,10 +96,21 @@ pw_cc_library(
srcs = ["test_server.cc"],
hdrs = ["public/pw_tls_client/test/test_server.h"],
includes = ["public"],
+ # TODO(b/257527057): Get this to build.
+ tags = ["manual"],
+ deps = [
+ "//pw_bytes",
+ "//pw_log",
+ "//pw_preprocessor",
+ "//pw_result",
+ "//pw_stream",
+ ],
)
pw_cc_test(
name = "test_server_test",
srcs = ["test_server_test.cc"],
+ # TODO(b/257527057): Get this to build.
+ tags = ["manual"],
deps = [":test_server"],
)