diff options
author | dmauro <dmauro@google.com> | 2020-10-14 16:08:32 (GMT) |
---|---|---|
committer | Derek Mauro <dmauro@google.com> | 2020-10-14 22:26:49 (GMT) |
commit | 7e7e94429d5cc0e41976c3142c76a7f0cc5c892b (patch) | |
tree | d7c5b8167e5f30fdea66c66b1fb1d803a9ef9d9f /WORKSPACE | |
parent | 8ccc5ec5c0d04f889749e2faafbeec80d0a62257 (diff) | |
download | googletest-7e7e94429d5cc0e41976c3142c76a7f0cc5c892b.zip googletest-7e7e94429d5cc0e41976c3142c76a7f0cc5c892b.tar.gz googletest-7e7e94429d5cc0e41976c3142c76a7f0cc5c892b.tar.bz2 |
Googletest export
Stop using master.zip to make the build reproducible
PiperOrigin-RevId: 337102716
Diffstat (limited to 'WORKSPACE')
-rw-r--r-- | WORKSPACE | 29 |
1 files changed, 18 insertions, 11 deletions
@@ -2,22 +2,29 @@ workspace(name = "com_google_googletest") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") -# Abseil http_archive( - name = "com_google_absl", - urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"], - strip_prefix = "abseil-cpp-master", + name = "com_google_absl", # 2020-10-13T16:49:13Z + urls = [ + "https://github.com/abseil/abseil-cpp/archive/f3f785ab59478dd0312bf1b5df65d380650bf0dc.zip" + ], + strip_prefix = "abseil-cpp-f3f785ab59478dd0312bf1b5df65d380650bf0dc", + sha256 = "00c3707bf9cd5eabd1ec6932cc65b97378c043f22573be3adf7d11bb7af17d06", ) http_archive( - name = "rules_cc", - strip_prefix = "rules_cc-master", - urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"], + name = "rules_cc", # 2020-10-05T06:01:24Z + urls = [ + "https://github.com/bazelbuild/rules_cc/archive/f055da4ff0cb2b3c73de1fe2f094ebdfb8b3acb9.zip" + ], + strip_prefix = "rules_cc-f055da4ff0cb2b3c73de1fe2f094ebdfb8b3acb9", + sha256 = "35ea62c63cd71d4000efe85f9f4f17e8afb23896c37ee9510952db2e9d8fbb70", ) http_archive( - name = "rules_python", - strip_prefix = "rules_python-master", - urls = ["https://github.com/bazelbuild/rules_python/archive/master.zip"], + name = "rules_python", # 2020-09-30T13:50:21Z + urls = [ + "https://github.com/bazelbuild/rules_python/archive/c064f7008a30f307ea7516cf52358a653011f82b.zip", + ], + strip_prefix = "rules_python-c064f7008a30f307ea7516cf52358a653011f82b", + sha256 = "6e49996ad3cf45b2232b8f94ca1e3ead369c28394c51632be8d85fe826383012", ) - |