diff --git a/WORKSPACE b/WORKSPACE index c5c5642011..24062f1570 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,4 +1,4 @@ -load("//tf_dependency:tf_configure.bzl", "tf_configure") +load("//build_deps/tf_dependency:tf_configure.bzl", "tf_configure") load("//build_deps/gpu:cuda_configure.bzl", "cuda_configure") tf_configure( diff --git a/tf_dependency/BUILD b/build_deps/tf_dependency/BUILD similarity index 100% rename from tf_dependency/BUILD rename to build_deps/tf_dependency/BUILD diff --git a/tf_dependency/BUILD.tpl b/build_deps/tf_dependency/BUILD.tpl similarity index 100% rename from tf_dependency/BUILD.tpl rename to build_deps/tf_dependency/BUILD.tpl diff --git a/tf_dependency/build_defs.bzl.tpl b/build_deps/tf_dependency/build_defs.bzl.tpl similarity index 100% rename from tf_dependency/build_defs.bzl.tpl rename to build_deps/tf_dependency/build_defs.bzl.tpl diff --git a/tf_dependency/tf_configure.bzl b/build_deps/tf_dependency/tf_configure.bzl similarity index 99% rename from tf_dependency/tf_configure.bzl rename to build_deps/tf_dependency/tf_configure.bzl index f5256ef603..fc187ee552 100644 --- a/tf_dependency/tf_configure.bzl +++ b/build_deps/tf_dependency/tf_configure.bzl @@ -13,7 +13,7 @@ def _tpl(repository_ctx, tpl, substitutions = {}, out = None): out = tpl repository_ctx.template( out, - Label("//tf_dependency:%s.tpl" % tpl), + Label("//build_deps/tf_dependency:%s.tpl" % tpl), substitutions, )