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.bazel28
1 files changed, 23 insertions, 5 deletions
diff --git a/pw_tls_client/BUILD.bazel b/pw_tls_client/BUILD.bazel
index d9d388db9..6b256af42 100644
--- a/pw_tls_client/BUILD.bazel
+++ b/pw_tls_client/BUILD.bazel
@@ -37,12 +37,25 @@ pw_cc_facade(
"//pw_result",
"//pw_status",
"//pw_stream",
+ "//pw_string",
],
)
pw_cc_library(
name = "pw_tls_client",
- deps = [":pw_tls_client_facade"],
+ hdrs = [
+ "public/pw_tls_client/options.h",
+ "public/pw_tls_client/session.h",
+ "public/pw_tls_client/status.h",
+ ],
+ includes = ["public"],
+ deps = [
+ "//pw_assert",
+ "//pw_bytes",
+ "//pw_result",
+ "//pw_status",
+ "//pw_stream",
+ ],
)
# TODO(zyecheng): Add a "backend_multiplexer" target once BoringSSL/MbedTLS is
@@ -63,9 +76,14 @@ pw_cc_facade(
pw_cc_library(
name = "fake_entropy",
srcs = ["fake_entropy.cc"],
+ hdrs = [
+ "public/pw_tls_client/entropy.h",
+ ],
+ includes = ["public"],
deps = [
- ":entropy_facade",
+ "//pw_bytes",
"//pw_log",
+ "//pw_status",
],
)
@@ -78,7 +96,7 @@ pw_cc_library(
srcs = [
"build_time.cc",
],
- # TODO(b/257527057): Get this to build.
+ # TODO: b/257527057 - Get this to build.
tags = ["manual"],
)
@@ -96,7 +114,7 @@ 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.
+ # TODO: b/257527057 - Get this to build.
tags = ["manual"],
deps = [
"//pw_bytes",
@@ -110,7 +128,7 @@ pw_cc_library(
pw_cc_test(
name = "test_server_test",
srcs = ["test_server_test.cc"],
- # TODO(b/257527057): Get this to build.
+ # TODO: b/257527057 - Get this to build.
tags = ["manual"],
deps = [":test_server"],
)