Skip to content

Commit a642ff7

Browse files
authored
Merge pull request #19 from achew22/dates
Fix glob for ptype.
2 parents 51742fe + 7f60a8d commit a642ff7

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

protobuf/build_file/com_github_golang_protobuf.BUILD

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ go_library(
3434
name = "protoc-gen-go/grpc",
3535
srcs = ["protoc-gen-go/grpc/grpc.go"],
3636
deps = [
37-
"protoc-gen-go/descriptor",
38-
"protoc-gen-go/generator",
37+
":protoc-gen-go/descriptor",
38+
":protoc-gen-go/generator",
3939
],
4040
)
4141

4242
go_library(
4343
name = "protoc-gen-go/generator",
4444
srcs = ["protoc-gen-go/generator/generator.go"],
4545
deps = [
46-
"proto",
47-
"protoc-gen-go/descriptor",
48-
"protoc-gen-go/plugin",
46+
":proto",
47+
":protoc-gen-go/descriptor",
48+
":protoc-gen-go/plugin",
4949
],
5050
)
5151

@@ -76,10 +76,12 @@ go_library(
7676
go_library(
7777
name = "ptypes",
7878
srcs = glob(
79-
include = ["ptypes/go"],
80-
exclude = ["ptypes/_test.go"],
79+
include = ["ptypes/*.go"],
80+
exclude = ["ptypes/*._test.go"],
8181
),
8282
deps = [
83+
":proto",
84+
":protoc-gen-go/descriptor",
8385
":ptypes/any",
8486
":ptypes/duration",
8587
":ptypes/empty",

protobuf/internal/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ REPOSITORIES = {
192192
"kind": "new_git_repository",
193193
"name": "com_github_grpc_ecosystem_grpc_gateway",
194194
"remote": "https://github.com/grpc-ecosystem/grpc-gateway.git",
195-
"commit": "ccd4e6b091a44f9f6b32848ffc63b3e8f8e26092",
195+
"commit": "acebe0f9ff5993e130b141ee60e83e592839ca22",
196196
"build_file": str(Label("//protobuf:build_file/com_github_grpc_ecosystem_grpc_gateway.BUILD")),
197197
},
198198

0 commit comments

Comments
 (0)