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.bzl3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/repo.bzl b/third_party/repo.bzl
index aa178fa8ca..36f5aa5bde 100644
--- a/third_party/repo.bzl
+++ b/third_party/repo.bzl
@@ -17,6 +17,7 @@
_SINGLE_URL_WHITELIST = depset([
"arm_compiler",
"ortools_archive",
+ "gemmlowp",
])
def _is_windows(ctx):
@@ -68,7 +69,7 @@ def _apply_delete(ctx, paths):
_execute_and_check_ret_code(ctx, cmd)
def _tf_http_archive(ctx):
- if ("mirror.bazel.build" not in ctx.attr.urls[0] or
+ if ("mirror.bazel.build" not in ctx.attr.urls[0] and
(len(ctx.attr.urls) < 2 and
ctx.attr.name not in _SINGLE_URL_WHITELIST)):
fail("tf_http_archive(urls) must have redundant URLs. The " +