summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
author Dan Willemsen <dwillemsen@google.com> 2021-05-24 14:24:12 -0700
committer Dan Willemsen <dwillemsen@google.com> 2021-07-23 11:12:05 -0700
commit4591b6496deaffa6fa9f21ae546e2815e510866d (patch)
tree9323db61272009afcda4cc31854f8352abed4a68 /go.mod
parent00d21ce8a5dec6529221fc57e1799e8c39648d07 (diff)
Upgrade to golang protobuf api v2
Major operations: * Fix the go_package entries to be consistent, as the new tool complains when it doesn't have a '/'. * Regenerate with the new protoc-gen-go tool. * github.com/golang/protobuf -> google.golang.org/protobuf * proto.[Un]MarshalText -> prototext.[Un]Marshal Change-Id: Ie1147bd2457fafb66ba555461b3bf14f0561a25d
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod4
1 files changed, 2 insertions, 2 deletions
diff --git a/go.mod b/go.mod
index 7297dea74..9a2ebcc63 100644
--- a/go.mod
+++ b/go.mod
@@ -1,10 +1,10 @@
module android/soong
-require github.com/golang/protobuf v0.0.0
+require google.golang.org/protobuf v0.0.0
require github.com/google/blueprint v0.0.0
-replace github.com/golang/protobuf v0.0.0 => ../../external/golang-protobuf
+replace google.golang.org/protobuf v0.0.0 => ../../external/golang-protobuf
replace github.com/google/blueprint v0.0.0 => ../blueprint