Skip to content

Commit

Permalink
pw_tls_client: Get the wildcard build to work
Browse files Browse the repository at this point in the history
Bug: 244743459
Change-Id: I43f7a14d82c3f9d66c7d16e88089ec29392bd129
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/117295
Pigweed-Auto-Submit: Ted Pudlik <tpudlik@google.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
Reviewed-by: Armando Montanez <amontanez@google.com>
  • Loading branch information
tpudlik authored and CQ Bot Account committed Nov 4, 2022
1 parent f38b6c4 commit 55bb473
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
1 change: 0 additions & 1 deletion pw_presubmit/py/pw_presubmit/pigweed_presubmit.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,6 @@ def cmake_gcc(ctx: PresubmitContext):
'-//pw_thread:thread_snapshot_service_py_pb2_genproto',
'-//pw_thread_embos/...:all',
'-//pw_thread_freertos/...:all',
'-//pw_tls_client/...:all',
'-//pw_tls_client_boringssl/...:all',
'-//pw_tls_client_mbedtls/...:all',
'-//pw_tokenizer:tokenizer_proto_py_pb2', # TODO(b/241456982) Fix
Expand Down
14 changes: 14 additions & 0 deletions pw_tls_client/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ pw_cc_library(
srcs = ["fake_entropy.cc"],
deps = [
":entropy_facade",
"//pw_log",
],
)

Expand All @@ -77,6 +78,8 @@ pw_cc_library(
srcs = [
"build_time.cc",
],
# TODO(b/257527057): Get this to build.
tags = ["manual"],
)

pw_cc_library(
Expand All @@ -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"],
)

0 comments on commit 55bb473

Please sign in to comment.