aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/workspace.bzl
diff options
context:
space:
mode:
authorGravatar Austin Anderson <angerson@google.com>2018-08-15 17:33:29 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-15 17:37:06 -0700
commit1357711e6faf688f863821c35be6c358891616ec (patch)
tree8f43af7a45ff05527efb64442d7cf225d18675c9 /tensorflow/workspace.bzl
parent34911101beb2e302b4afcaff79310845998e3530 (diff)
Create new interface for specifying TensorFlow third party imports
PiperOrigin-RevId: 208913262
Diffstat (limited to 'tensorflow/workspace.bzl')
-rw-r--r--tensorflow/workspace.bzl6
1 files changed, 6 insertions, 0 deletions
diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
index fb6e02efca..9d02cc2885 100644
--- a/tensorflow/workspace.bzl
+++ b/tensorflow/workspace.bzl
@@ -20,6 +20,10 @@ load(
"def_file_filter_configure",
)
+def initialize_third_party():
+ # Fill in later
+ pass
+
# Sanitize a dependency so that it works correctly from code that includes
# TensorFlow as a submodule.
def clean_dep(dep):
@@ -40,6 +44,8 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
syslibs_configure(name = "local_config_syslibs")
python_configure(name = "local_config_python")
+ initialize_third_party()
+
# For windows bazel build
# TODO: Remove def file filter when TensorFlow can export symbols properly on Windows.
def_file_filter_configure(name = "local_config_def_file_filter")