| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 //go:generate protoc --go_out=import_path=github.com/luci/luci-go/common/proto/g
oogle:. descriptor.proto | 5 //go:generate protoc --go_out=import_path=github.com/luci/luci-go/common/proto/g
oogle:. descriptor.proto |
| 6 //go:generate protoc -outil_test.desc util_test.proto |
| 6 | 7 |
| 7 package descriptor | 8 package descriptor |
| 8 | 9 |
| 9 import ( | 10 import ( |
| 10 "github.com/golang/protobuf/proto" | 11 "github.com/golang/protobuf/proto" |
| 11 ) | 12 ) |
| 12 | 13 |
| 13 var _ = proto.Marshal | 14 var _ = proto.Marshal |
| OLD | NEW |