tensorflow/WORKSPACE
Christian Sigg da0884c7d4 [NFC, internal change] Polish copybara workflow file.
PiperOrigin-RevId: 352434171
Change-Id: I15d05e4fbd02d02cbb544100c92c79c0c8fdcc40
2021-01-18 11:07:07 -08:00

24 lines
629 B
Python

workspace(name = "org_tensorflow")
# Initialize the TensorFlow repository and all dependencies.
#
# The cascade of load() statements and workspace() calls works around the
# restriction that load() statements need to be at the top of .bzl files.
# E.g. we can not retrieve a new repository with http_archive and then load()
# a macro from that repository in the same file.
load("@//tensorflow:workspace3.bzl", "workspace")
workspace()
load("@//tensorflow:workspace2.bzl", "workspace")
workspace()
load("@//tensorflow:workspace1.bzl", "workspace")
workspace()
load("@//tensorflow:workspace0.bzl", "workspace")
workspace()