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