aboutsummaryrefslogtreecommitdiff
path: root/pw_minimal_cpp_stdlib/BUILD.bazel
diff options
context:
space:
mode:
authorWyatt Hepler <hepler@google.com>2022-11-04 22:56:15 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-11-04 22:56:15 +0000
commitff9a876cfbac2d3c713fd6d520e1d8b5f7b57bfa (patch)
treeea1ca5a582dbddbe308762e9edb099cf5a297c8f /pw_minimal_cpp_stdlib/BUILD.bazel
parent47167b9f6dbdbf4b26974594db7f090350e79e34 (diff)
downloadpigweed-ff9a876cfbac2d3c713fd6d520e1d8b5f7b57bfa.tar.gz
pw_minimal_cpp_stdlib: Disable targets in Bazel build
pw_minimal_cpp_stdlib cannot currently build in Bazel, so mark the offending targets as manual. Bug: 244743459 Change-Id: I31e9bb94829df88200552c84aa621f223fbb984a Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/117298 Commit-Queue: Wyatt Hepler <hepler@google.com> Pigweed-Auto-Submit: Wyatt Hepler <hepler@google.com> Reviewed-by: Ted Pudlik <tpudlik@google.com>
Diffstat (limited to 'pw_minimal_cpp_stdlib/BUILD.bazel')
-rw-r--r--pw_minimal_cpp_stdlib/BUILD.bazel5
1 files changed, 5 insertions, 0 deletions
diff --git a/pw_minimal_cpp_stdlib/BUILD.bazel b/pw_minimal_cpp_stdlib/BUILD.bazel
index 4deb4ceb6..47251c9b8 100644
--- a/pw_minimal_cpp_stdlib/BUILD.bazel
+++ b/pw_minimal_cpp_stdlib/BUILD.bazel
@@ -64,12 +64,16 @@ pw_cc_library(
],
copts = ["-nostdinc++"],
includes = ["public"],
+ deps = [
+ "//pw_polyfill:standard_library",
+ ],
)
pw_cc_library(
name = "minimal_cpp_stdlib_isolated_test",
srcs = ["isolated_test.cc"],
copts = ["-nostdinc++"],
+ tags = ["manual"], # TODO(b/257529911): Fix build failures.
deps = [
":pw_minimal_cpp_stdlib",
"//pw_preprocessor",
@@ -81,6 +85,7 @@ pw_cc_test(
srcs = [
"test.cc",
],
+ tags = ["manual"], # TODO(b/257529911): Fix build failures.
deps = [
":minimal_cpp_stdlib_isolated_test",
"//pw_unit_test",