aboutsummaryrefslogtreecommitdiff
path: root/pw_log_rpc
diff options
context:
space:
mode:
authorAlexei Frolov <frolv@google.com>2020-10-22 13:54:36 -0700
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2020-10-23 19:30:06 +0000
commit8e30d466220d6508968d0d091e6a2c7104a068ec (patch)
tree5d1cda3131667772b506b5e53cd05feb789ebf03 /pw_log_rpc
parent94c2f06bc7c7689b65a14d61d9683848c9dcf1bf (diff)
downloadpigweed-8e30d466220d6508968d0d091e6a2c7104a068ec.tar.gz
pw_protobuf_compiler: Rename generated GN targets
This updates generated protobuf targets to use the format <target>.<generator> instead of <target>_<generator> to improve readability. Change-Id: I52d1e398d5bbece7f79ae87e9a1df7fdce880a6b Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/22222 Reviewed-by: Wyatt Hepler <hepler@google.com> Reviewed-by: Armando Montanez <amontanez@google.com> Commit-Queue: Alexei Frolov <frolv@google.com>
Diffstat (limited to 'pw_log_rpc')
-rw-r--r--pw_log_rpc/BUILD.gn4
1 files changed, 2 insertions, 2 deletions
diff --git a/pw_log_rpc/BUILD.gn b/pw_log_rpc/BUILD.gn
index 6cbaef138..b2eac44ea 100644
--- a/pw_log_rpc/BUILD.gn
+++ b/pw_log_rpc/BUILD.gn
@@ -35,7 +35,7 @@ pw_source_set("log_queue") {
"$dir_pw_status",
]
sources = [ "log_queue.cc" ]
- deps = [ ":protos_pwpb" ]
+ deps = [ ":protos.pwpb" ]
}
pw_proto_library("protos") {
@@ -50,7 +50,7 @@ pw_test("log_queue_test") {
sources = [ "log_queue_test.cc" ]
deps = [
":log_queue",
- ":protos_pwpb",
+ ":protos.pwpb",
dir_pw_protobuf,
]
}