aboutsummaryrefslogtreecommitdiff
path: root/pw_protobuf
diff options
context:
space:
mode:
authoraarongreen <aarongreen@google.com>2023-05-16 21:44:59 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-05-16 21:44:59 +0000
commit1f20efcb25e9c56a4dd72db5f87e03d0ff746fb3 (patch)
treec20f9c590d331142f7b13c60c099007a376091b3 /pw_protobuf
parent584b3b3436536cf89ec54182d302d908bc874a0e (diff)
downloadpigweed-1f20efcb25e9c56a4dd72db5f87e03d0ff746fb3.tar.gz
Reland "pw_fuzzer: Reorganize libFuzzer build support"
This is a reland of commit c6708fde71ed9eaae3664887db979c6da8774a9b Original change's description: > pw_fuzzer: Reorganize libFuzzer build support > > With the addition of FuzzTest, "pw_fuzzer" is no longer synonynmous with > libFuzzer. This CL renames libFuzzer targets, reorganizes pw_fuzzer's > BUILD.gn and BUILD.bazel into sections, and removes extraneous deps from > existing fuzzers. > > Change-Id: I943a10deaddcfdaa3f945a5a33e26d6947f39dda > Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/147370 > Reviewed-by: Carlos Chinchilla <cachinchilla@google.com> > Commit-Queue: Aaron Green <aarongreen@google.com> Change-Id: I4af33094de7c55fc8d71a414ec1656c35bd7ad17 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/147513 Reviewed-by: Carlos Chinchilla <cachinchilla@google.com> Commit-Queue: Aaron Green <aarongreen@google.com>
Diffstat (limited to 'pw_protobuf')
-rw-r--r--pw_protobuf/BUILD.bazel2
-rw-r--r--pw_protobuf/BUILD.gn2
2 files changed, 0 insertions, 4 deletions
diff --git a/pw_protobuf/BUILD.bazel b/pw_protobuf/BUILD.bazel
index 33c68926e..9439bf887 100644
--- a/pw_protobuf/BUILD.bazel
+++ b/pw_protobuf/BUILD.bazel
@@ -114,7 +114,6 @@ pw_cc_fuzz_test(
"fuzz.h",
],
deps = [
- "//pw_fuzzer",
"//pw_protobuf",
"//pw_span",
],
@@ -127,7 +126,6 @@ pw_cc_fuzz_test(
"fuzz.h",
],
deps = [
- "//pw_fuzzer",
"//pw_protobuf",
"//pw_span",
],
diff --git a/pw_protobuf/BUILD.gn b/pw_protobuf/BUILD.gn
index cdabe4bea..8c9ff523c 100644
--- a/pw_protobuf/BUILD.gn
+++ b/pw_protobuf/BUILD.gn
@@ -277,7 +277,6 @@ pw_fuzzer("encoder_fuzzer") {
]
deps = [
":pw_protobuf",
- dir_pw_fuzzer,
dir_pw_span,
]
enable_test_if = _supports_large_tests
@@ -290,7 +289,6 @@ pw_fuzzer("decoder_fuzzer") {
]
deps = [
":pw_protobuf",
- dir_pw_fuzzer,
dir_pw_span,
dir_pw_status,
dir_pw_stream,