2017-09-19 22:54:40 +02:00
|
|
|
workspace(name = "com_google_absl")
|
2018-02-09 20:56:54 +01:00
|
|
|
# Bazel toolchains
|
|
|
|
http_archive(
|
|
|
|
name = "bazel_toolchains",
|
|
|
|
urls = [
|
2018-03-28 17:41:59 +02:00
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/r324073.tar.gz",
|
|
|
|
"https://github.com/bazelbuild/bazel-toolchains/archive/r324073.tar.gz",
|
2018-02-09 20:56:54 +01:00
|
|
|
],
|
2018-03-28 17:41:59 +02:00
|
|
|
strip_prefix = "bazel-toolchains-r324073",
|
|
|
|
sha256 = "71548c0d6cd53eddebbde4fa9962f5395e82645fb9992719e0890505b177f245",
|
2018-02-09 20:56:54 +01:00
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
# GoogleTest/GoogleMock framework. Used by most unit-tests.
|
|
|
|
http_archive(
|
|
|
|
name = "com_google_googletest",
|
|
|
|
urls = ["https://github.com/google/googletest/archive/master.zip"],
|
|
|
|
strip_prefix = "googletest-master",
|
|
|
|
)
|
|
|
|
|
|
|
|
# CCTZ (Time-zone framework).
|
|
|
|
http_archive(
|
|
|
|
name = "com_googlesource_code_cctz",
|
|
|
|
urls = ["https://github.com/google/cctz/archive/master.zip"],
|
|
|
|
strip_prefix = "cctz-master",
|
|
|
|
)
|
|
|
|
|
|
|
|
# RE2 regular-expression framework. Used by some unit-tests.
|
|
|
|
http_archive(
|
|
|
|
name = "com_googlesource_code_re2",
|
|
|
|
urls = ["https://github.com/google/re2/archive/master.zip"],
|
|
|
|
strip_prefix = "re2-master",
|
|
|
|
)
|