Skip to content

Commit da7e633

Browse files
committed
Add missing requires_proto tag to //tests/haskell_proto_simple:foo_haskell
1 parent 3fe2aa6 commit da7e633

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/haskell_proto_simple/BUILD.bazel

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@ proto_library(
1313
name = "foo",
1414
srcs = ["foo.proto"],
1515
deps = ["@com_google_protobuf//:descriptor_proto"],
16+
tags = ["requires_proto"],
1617
)
1718

1819
haskell_proto_library(
1920
name = "foo_haskell",
2021
deps = [
2122
":foo",
2223
],
24+
tags = ["requires_proto"],
2325
)
2426

2527
haskell_library(
2628
name = "hs-lib",
2729
srcs = ["Bar.hs"],
28-
tags = [
29-
"requires_proto",
30-
],
31-
visibility = ["//visibility:public"],
3230
deps = [
3331
":foo_haskell",
3432
"//tests/hackage:base",
3533
"@stackage//:proto-lens",
3634
],
35+
tags = ["requires_proto"],
36+
visibility = ["//visibility:public"],
3737
)

0 commit comments

Comments
 (0)