diff options
author | dmauro <dmauro@google.com> | 2020-12-10 15:52:16 (GMT) |
---|---|---|
committer | Andy Getz <durandal@google.com> | 2020-12-10 22:56:26 (GMT) |
commit | fb4b3b6b9ad110f525b66c88380e94f49f40020f (patch) | |
tree | e6d892921294686b5dbb330df82003d278ce0000 | |
parent | e5644f5f12ff3d5b2232dabc1c5ea272a52e8155 (diff) | |
download | googletest-fb4b3b6b9ad110f525b66c88380e94f49f40020f.zip googletest-fb4b3b6b9ad110f525b66c88380e94f49f40020f.tar.gz googletest-fb4b3b6b9ad110f525b66c88380e94f49f40020f.tar.bz2 |
Googletest export
Fix a missing Bazel build dependency
PiperOrigin-RevId: 346783462
-rw-r--r-- | googlemock/test/BUILD.bazel | 3 | ||||
-rw-r--r-- | googletest/test/BUILD.bazel | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/googlemock/test/BUILD.bazel b/googlemock/test/BUILD.bazel index 4aa9a75..97676ea 100644 --- a/googlemock/test/BUILD.bazel +++ b/googlemock/test/BUILD.bazel @@ -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( diff --git a/googletest/test/BUILD.bazel b/googletest/test/BUILD.bazel index e24f5f2..7d3e161 100644 --- a/googletest/test/BUILD.bazel +++ b/googletest/test/BUILD.bazel @@ -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", |