diff options
author | 2021-05-24 14:24:12 -0700 | |
---|---|---|
committer | 2021-07-23 11:12:05 -0700 | |
commit | 4591b6496deaffa6fa9f21ae546e2815e510866d (patch) | |
tree | 9323db61272009afcda4cc31854f8352abed4a68 /ui/status/log.go | |
parent | 00d21ce8a5dec6529221fc57e1799e8c39648d07 (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 'ui/status/log.go')
-rw-r--r-- | ui/status/log.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/status/log.go b/ui/status/log.go index 4a08acbaf..14df346de 100644 --- a/ui/status/log.go +++ b/ui/status/log.go @@ -23,11 +23,11 @@ import ( "os" "strings" - "github.com/golang/protobuf/proto" + "google.golang.org/protobuf/proto" "android/soong/ui/logger" - "android/soong/ui/status/build_error_proto" - "android/soong/ui/status/build_progress_proto" + soong_build_error_proto "android/soong/ui/status/build_error_proto" + soong_build_progress_proto "android/soong/ui/status/build_progress_proto" ) type verboseLog struct { |