aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/repo.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/repo.bzl')
-rw-r--r--third_party/repo.bzl5
1 files changed, 3 insertions, 2 deletions
diff --git a/third_party/repo.bzl b/third_party/repo.bzl
index 36f5aa5bde..cb67d3e961 100644
--- a/third_party/repo.bzl
+++ b/third_party/repo.bzl
@@ -17,7 +17,6 @@
_SINGLE_URL_WHITELIST = depset([
"arm_compiler",
"ortools_archive",
- "gemmlowp",
])
def _is_windows(ctx):
@@ -88,7 +87,9 @@ def _tf_http_archive(ctx):
if ctx.attr.patch_file != None:
_apply_patch(ctx, ctx.attr.patch_file)
if ctx.attr.build_file != None:
- ctx.template("BUILD", ctx.attr.build_file, {
+ # Use BUILD.bazel to avoid conflict with third party projects with
+ # BUILD or build (directory) underneath.
+ ctx.template("BUILD.bazel", ctx.attr.build_file, {
"%prefix%": ".." if _repos_are_siblings() else "external",
}, False)