aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/clang_toolchain/cc_configure_clang.bzl
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-07-06 04:26:25 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-06 04:30:41 -0700
commit98798670a148ae407999e1da7b55cf16381b024a (patch)
tree8e544a8f1f1778b41dfcf63325228f64f639e348 /third_party/clang_toolchain/cc_configure_clang.bzl
parent4d080fbbf5f8482bea1f1207b884620f96eaeb93 (diff)
Format .bzl files with buildifier
PiperOrigin-RevId: 203459720
Diffstat (limited to 'third_party/clang_toolchain/cc_configure_clang.bzl')
-rw-r--r--third_party/clang_toolchain/cc_configure_clang.bzl18
1 files changed, 9 insertions, 9 deletions
diff --git a/third_party/clang_toolchain/cc_configure_clang.bzl b/third_party/clang_toolchain/cc_configure_clang.bzl
index 1181110ea9..0778c43c53 100644
--- a/third_party/clang_toolchain/cc_configure_clang.bzl
+++ b/third_party/clang_toolchain/cc_configure_clang.bzl
@@ -7,16 +7,16 @@ _TF_DOWNLOAD_CLANG = "TF_DOWNLOAD_CLANG"
_TF_NEED_CUDA = "TF_NEED_CUDA"
def _cc_clang_autoconf(repo_ctx):
- if repo_ctx.os.environ.get(_TF_DOWNLOAD_CLANG) != "1":
- return
- if repo_ctx.os.environ.get(_TF_NEED_CUDA) == "1":
- # Clang is handled separately for CUDA configs.
- # See cuda_configure.bzl for more details.
- return
+ if repo_ctx.os.environ.get(_TF_DOWNLOAD_CLANG) != "1":
+ return
+ if repo_ctx.os.environ.get(_TF_NEED_CUDA) == "1":
+ # Clang is handled separately for CUDA configs.
+ # See cuda_configure.bzl for more details.
+ return
- download_clang(repo_ctx, out_folder='extra_tools')
- overriden_tools = {'gcc': 'extra_tools/bin/clang'}
- cc_autoconf_impl(repo_ctx, overriden_tools)
+ download_clang(repo_ctx, out_folder = "extra_tools")
+ overriden_tools = {"gcc": "extra_tools/bin/clang"}
+ cc_autoconf_impl(repo_ctx, overriden_tools)
cc_download_clang_toolchain = repository_rule(
environ = [