...
1
2
3
4 package proto
5
6 import "github.com/bazelbuild/bazel-gazelle/label"
7
8 var knownGoProtoImports = map[string]label.Label{
9
10 "github.com/golang/protobuf/ptypes/any": label.Label{Repo: "com_github_golang_protobuf", Pkg: "ptypes/any", Name: "any"},
11 "google.golang.org/genproto/protobuf/api": label.Label{Repo: "org_golang_google_genproto", Pkg: "protobuf/api", Name: "api"},
12 "github.com/golang/protobuf/protoc-gen-go/plugin": label.Label{Repo: "com_github_golang_protobuf", Pkg: "protoc-gen-go/plugin", Name: "plugin"},
13 "github.com/golang/protobuf/protoc-gen-go/descriptor": label.Label{Repo: "com_github_golang_protobuf", Pkg: "protoc-gen-go/descriptor", Name: "descriptor"},
14 "github.com/golang/protobuf/ptypes/duration": label.Label{Repo: "com_github_golang_protobuf", Pkg: "ptypes/duration", Name: "duration"},
15 "github.com/golang/protobuf/ptypes/empty": label.Label{Repo: "com_github_golang_protobuf", Pkg: "ptypes/empty", Name: "empty"},
16 "google.golang.org/genproto/protobuf/field_mask": label.Label{Repo: "org_golang_google_genproto", Pkg: "protobuf/field_mask", Name: "field_mask"},
17 "google.golang.org/genproto/protobuf/source_context": label.Label{Repo: "org_golang_google_genproto", Pkg: "protobuf/source_context", Name: "source_context"},
18 "github.com/golang/protobuf/ptypes/struct": label.Label{Repo: "com_github_golang_protobuf", Pkg: "ptypes/struct", Name: "struct"},
19 "github.com/golang/protobuf/ptypes/timestamp": label.Label{Repo: "com_github_golang_protobuf", Pkg: "ptypes/timestamp", Name: "timestamp"},
20 "google.golang.org/genproto/protobuf/ptype": label.Label{Repo: "org_golang_google_genproto", Pkg: "protobuf/ptype", Name: "ptype"},
21 "github.com/golang/protobuf/ptypes/wrappers": label.Label{Repo: "com_github_golang_protobuf", Pkg: "ptypes/wrappers", Name: "wrappers"},
22 }
23
View as plain text