STT-tensorflow/tensorflow/workspace3.bzl
Amit Patankar c761419031 Migrate the clang6 directories of toolchains directly to GitHub. Update the toolchains version to 1.1.7.
PiperOrigin-RevId: 360531035
Change-Id: I894dc6e450eb81a688a450fd7970ac4476e7110f
2021-03-02 15:45:28 -08:00

29 lines
1.2 KiB
Python

"""TensorFlow workspace initialization. Consult the WORKSPACE on how to use it."""
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
def workspace():
http_archive(
name = "io_bazel_rules_closure",
sha256 = "5b00383d08dd71f28503736db0500b6fb4dda47489ff5fc6bed42557c07c6ba9",
strip_prefix = "rules_closure-308b05b2419edb5c8ee0471b67a40403df940149",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/bazelbuild/rules_closure/archive/308b05b2419edb5c8ee0471b67a40403df940149.tar.gz",
"https://github.com/bazelbuild/rules_closure/archive/308b05b2419edb5c8ee0471b67a40403df940149.tar.gz", # 2019-06-13
],
)
http_archive(
name = "tf_toolchains",
sha256 = "abc6d1b705e3a36e029fef4a85009deafbd7dfc725de2a224c2d22f0778ef092",
strip_prefix = "toolchains-1.1.7",
urls = [
"http://mirror.tensorflow.org/github.com/tensorflow/toolchains/archive/v1.1.7.tar.gz",
"https://github.com/tensorflow/toolchains/archive/v1.1.7.tar.gz",
],
)
# Alias so it can be loaded without assigning to a different symbol to prevent
# shadowing previous loads and trigger a buildifier warning.
tf_workspace3 = workspace