Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: go/src/infra/tools/cipd/internal/messages/generate.go

Issue 1381583007: cipd: Implement local cache for ResolveVersion(...) call with tags. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@cipd-init
Patch Set: rebase Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: go/src/infra/tools/cipd/internal/messages/generate.go
diff --git a/go/src/infra/gae/epservice/epservice_other.go b/go/src/infra/tools/cipd/internal/messages/generate.go
similarity index 59%
copy from go/src/infra/gae/epservice/epservice_other.go
copy to go/src/infra/tools/cipd/internal/messages/generate.go
index a60db74ffa5bb27818a69bd61bd4774c90b8b33a..cc35e1548f4b857d57f7c1200c22bcc3c7cfbaf5 100644
--- a/go/src/infra/gae/epservice/epservice_other.go
+++ b/go/src/infra/tools/cipd/internal/messages/generate.go
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// +build !windows
+//go:generate protoc --go_out=. messages.proto
-package main
+package messages
import (
- "syscall"
+ "github.com/golang/protobuf/proto"
)
-var serverStartParams = &syscall.SysProcAttr{Setpgid: true}
+var _ = proto.Marshal

Powered by Google App Engine
This is Rietveld 408576698