github.com/johnnyeven/libtools@v0.0.0-20191126065708-61829c1adf46/third_party/jpeg/workspace.bzl (about)

     1  """loads the jpeg library, used by TF."""
     2  
     3  load("//third_party:repo.bzl", "third_party_http_archive")
     4  
     5  def repo():
     6      third_party_http_archive(
     7          name = "jpeg",
     8          urls = [
     9              "https://storage.googleapis.com/mirror.tensorflow.org/github.com/libjpeg-turbo/libjpeg-turbo/archive/2.0.0.tar.gz",
    10              "https://github.com/libjpeg-turbo/libjpeg-turbo/archive/2.0.0.tar.gz",
    11          ],
    12          sha256 = "f892fff427ab3adffc289363eac26d197ce3ccacefe5f5822377348a8166069b",
    13          strip_prefix = "libjpeg-turbo-2.0.0",
    14          build_file = "//third_party/jpeg:BUILD.bazel",
    15          system_build_file = "//third_party/jpeg:BUILD.system",
    16      )