Googletest export

Fix a missing Bazel build dependency

PiperOrigin-RevId: 346783462
This commit is contained in:
dmauro 2020-12-10 10:52:16 -05:00 committed by Andy Getz
parent e5644f5f12
commit fb4b3b6b9a
2 changed files with 5 additions and 0 deletions

View File

@ -52,6 +52,9 @@ py_library(
name = "gmock_test_utils",
testonly = 1,
srcs = ["gmock_test_utils.py"],
deps = [
"//googletest/test:gtest_test_utils",
]
)
cc_binary(

View File

@ -35,6 +35,8 @@ load("@rules_python//python:defs.bzl", "py_library", "py_test")
licenses(["notice"])
package(default_visibility = ["//:__subpackages__"])
#on windows exclude gtest-tuple.h
cc_test(
name = "gtest_all_test",