aboutsummaryrefslogtreecommitdiff
path: root/pw_protobuf
diff options
context:
space:
mode:
authorTed Pudlik <tpudlik@google.com>2022-02-04 23:16:09 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-02-04 23:34:51 +0000
commit0e718cbd4b6716ad3a7ca979076aac00e08919b0 (patch)
tree9f3b6c309fb1526eecb7833177bd8bd2ddaacdbe /pw_protobuf
parent4404eb53ea6cdec4970166552b85331cd179bf7d (diff)
downloadpigweed-0e718cbd4b6716ad3a7ca979076aac00e08919b0.tar.gz
Revert "pw_protobuf_compiler: Adds Nanopb to Bazel build"
This reverts commit 059e10ae69cfb22ef53731dee2ef374d341beab0. Reason for revert: Breaks the bazel build (https://ci.chromium.org/p/pigweed/builders/try/pigweed-linux-bazel-build-host-clang) Original change's description: > pw_protobuf_compiler: Adds Nanopb to Bazel build > > This change adds support for Protobuf code generation in the Bazel build > using the Nanopb plugin. As a side affect this also fixes a number of > packages, however requires some renaming to prevent clashes. > > Fixed: 507 > Bug: 317 > Change-Id: Ie4a25a9cc7a7b550b4ef73e67f71308e48bdbc4c > Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/78020 > Reviewed-by: Ted Pudlik <tpudlik@google.com> > Commit-Queue: Ted Pudlik <tpudlik@google.com> TBR=frolv@google.com,pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com,tpudlik@google.com,nathaniel.brough@gmail.com Change-Id: I92ba10efa39d131a07607b0f17d201bdb9a5c87e No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 317 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/83081 Pigweed-Auto-Submit: Ted Pudlik <tpudlik@google.com> Reviewed-by: Keir Mierle <keir@google.com> Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
Diffstat (limited to 'pw_protobuf')
-rw-r--r--pw_protobuf/BUILD.bazel9
1 files changed, 3 insertions, 6 deletions
diff --git a/pw_protobuf/BUILD.bazel b/pw_protobuf/BUILD.bazel
index eada35330..247ba156b 100644
--- a/pw_protobuf/BUILD.bazel
+++ b/pw_protobuf/BUILD.bazel
@@ -180,11 +180,8 @@ proto_library(
)
pw_proto_library(
- name = "codegen_test_proto_cc",
- deps = [
- ":codegen_test_proto",
- ":common_protos",
- ],
+ name = "codegen_test_protos_pwpb",
+ deps = [":codegen_test_proto"],
)
pw_cc_test(
@@ -193,7 +190,7 @@ pw_cc_test(
"codegen_test.cc",
],
deps = [
- ":codegen_test_proto_cc.pwpb",
+ ":codegen_test_protos_pwpb",
":pw_protobuf",
"//pw_span",
"//pw_unit_test",