Merge pull request #519 from fowles/main

fix msg_test to be explicit about its deps
pull/13171/head
Matt Fowles Kulukundis 3 years ago committed by GitHub
commit 421291fc9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      BUILD

@ -272,7 +272,10 @@ cc_test(
srcs = ["upb/msg_test.cc"],
deps = [
":json",
":msg_test_upb_proto",
":msg_test_upb_proto_reflection",
":reflection",
":upb",
"@com_google_googletest//:gtest_main",
],
)
@ -284,6 +287,12 @@ proto_library(
deps = ["@com_google_protobuf//:test_messages_proto3_proto"],
)
upb_proto_library(
name = "msg_test_upb_proto",
testonly = 1,
deps = [":msg_test_proto"],
)
upb_proto_reflection_library(
name = "msg_test_upb_proto_reflection",
testonly = 1,

Loading…
Cancel
Save