From 6481f6319e50f7a5d72436ca9d4fc28eeb0aff0d Mon Sep 17 00:00:00 2001 From: Matt Kulukundis Date: Sat, 3 Apr 2021 22:23:33 -0400 Subject: [PATCH] Spell out deps explicitly Google internal bazel is more strict about deps, so both reflection and non need to be spelled out explicitly. --- tests/BUILD | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/BUILD b/tests/BUILD index dd8c82147a..8407d6f013 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -86,12 +86,18 @@ upb_proto_reflection_library( deps = ["test_cpp_proto"], ) +upb_proto_reflection_library( + name = "test_cpp_upb_proto_reflection", + deps = ["test_cpp_proto"], +) + cc_test( name = "test_cpp", srcs = ["test_cpp.cc"], copts = UPB_DEFAULT_CPPOPTS, deps = [ ":test_cpp_upb_proto", + ":test_cpp_upb_proto_reflection", ":upb_test", "//:json", "//:port",