Merge pull request #23287 from veblush/rename-bazel-googletest

Renamed com_github_google_googletest to com_google_googletest
pull/23300/head
Esun Kim 5 years ago committed by GitHub
commit 877a97209b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      bazel/grpc_deps.bzl
  2. 2
      tools/run_tests/sanity/check_bazel_workspace.py

@ -63,7 +63,7 @@ def grpc_deps():
native.bind(
name = "gtest",
actual = "@com_github_google_googletest//:gtest",
actual = "@com_google_googletest//:gtest",
)
native.bind(
@ -162,9 +162,9 @@ def grpc_deps():
],
)
if "com_github_google_googletest" not in native.existing_rules():
if "com_google_googletest" not in native.existing_rules():
http_archive(
name = "com_github_google_googletest",
name = "com_google_googletest",
sha256 = "443d383db648ebb8e391382c0ab63263b7091d03197f304390baac10f178a468",
strip_prefix = "googletest-c9ccac7cb7345901884aabf5d1a786cfa6e2f397",
urls = [

@ -46,7 +46,7 @@ _GRPC_DEP_NAMES = [
'boringssl',
'zlib',
'com_google_protobuf',
'com_github_google_googletest',
'com_google_googletest',
'rules_cc',
'com_github_gflags_gflags',
'com_github_google_benchmark',

Loading…
Cancel
Save