aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Akshay Modi <nareshmodi@google.com>2018-06-18 11:48:36 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-18 11:55:03 -0700
commit148b4381fd0259cae441e459ec8ebe2c5d557722 (patch)
treec66c96ea6c60c63385b528dce195af802b8acf3b /third_party
parentfc03fbff3dd7a58fa4f16226df4ada1f21f8b53f (diff)
Automated g4 rollback of changelist 201011811
PiperOrigin-RevId: 201033171
Diffstat (limited to 'third_party')
-rw-r--r--third_party/eigen.BUILD1
-rw-r--r--third_party/highwayhash.BUILD1
-rw-r--r--third_party/jpeg/jpeg.BUILD2
-rw-r--r--third_party/png.BUILD9
-rw-r--r--third_party/py/python_configure.bzl24
-rw-r--r--third_party/repo.bzl5
6 files changed, 6 insertions, 36 deletions
diff --git a/third_party/eigen.BUILD b/third_party/eigen.BUILD
index e54c1a4501..07bb6645eb 100644
--- a/third_party/eigen.BUILD
+++ b/third_party/eigen.BUILD
@@ -64,7 +64,6 @@ cc_library(
# This define (mostly) guarantees we don't link any problematic
# code. We use it, but we do not rely on it, as evidenced above.
"EIGEN_MPL2_ONLY",
- "EIGEN_MAX_ALIGN_BYTES=64",
],
includes = ["."],
visibility = ["//visibility:public"],
diff --git a/third_party/highwayhash.BUILD b/third_party/highwayhash.BUILD
index 08cb84ea2c..1b8e40765e 100644
--- a/third_party/highwayhash.BUILD
+++ b/third_party/highwayhash.BUILD
@@ -10,7 +10,6 @@ cc_library(
srcs = ["highwayhash/sip_hash.cc"],
hdrs = [
"highwayhash/sip_hash.h",
- "highwayhash/endianess.h",
"highwayhash/state_helpers.h",
],
visibility = ["//visibility:public"],
diff --git a/third_party/jpeg/jpeg.BUILD b/third_party/jpeg/jpeg.BUILD
index 663a218733..4418ac32fc 100644
--- a/third_party/jpeg/jpeg.BUILD
+++ b/third_party/jpeg/jpeg.BUILD
@@ -291,10 +291,8 @@ cc_library(
"jchuff.h",
"jconfig.h",
"jdct.h",
- "jerror.h",
"jinclude.h",
"jmorecfg.h",
- "jpegint.h",
"jpeglib.h",
"jsimd.h",
"jsimddct.h",
diff --git a/third_party/png.BUILD b/third_party/png.BUILD
index 17c5449cc0..76ab32d69c 100644
--- a/third_party/png.BUILD
+++ b/third_party/png.BUILD
@@ -28,14 +28,7 @@ cc_library(
"pngwrite.c",
"pngwtran.c",
"pngwutil.c",
- ] + select({
- "@org_tensorflow//tensorflow:linux_ppc64le": [
- "powerpc/powerpc_init.c",
- "powerpc/filter_vsx_intrinsics.c",
- ],
- "//conditions:default": [
- ],
- }),
+ ],
hdrs = [
"png.h",
"pngconf.h",
diff --git a/third_party/py/python_configure.bzl b/third_party/py/python_configure.bzl
index 3c7e5c8469..954f21f5f8 100644
--- a/third_party/py/python_configure.bzl
+++ b/third_party/py/python_configure.bzl
@@ -6,7 +6,6 @@
* `PYTHON_LIB_PATH`: Location of python libraries.
"""
-_BAZEL_SH = "BAZEL_SH"
_PYTHON_BIN_PATH = "PYTHON_BIN_PATH"
_PYTHON_LIB_PATH = "PYTHON_LIB_PATH"
_TF_PYTHON_CONFIG_REPO = "TF_PYTHON_CONFIG_REPO"
@@ -153,22 +152,6 @@ def _get_python_bin(repository_ctx):
_PYTHON_BIN_PATH, repository_ctx.os.environ.get("PATH", "")))
-def _get_bash_bin(repository_ctx):
- """Gets the bash bin path."""
- bash_bin = repository_ctx.os.environ.get(_BAZEL_SH)
- if bash_bin != None:
- return bash_bin
- else:
- bash_bin_path = repository_ctx.which("bash")
- if bash_bin_path != None:
- return str(bash_bin_path)
- else:
- _fail("Cannot find bash in PATH, please make sure " +
- "bash is installed and add its directory in PATH, or --define " +
- "%s='/path/to/bash'.\nPATH=%s" % (
- _BAZEL_SH, repository_ctx.os.environ.get("PATH", "")))
-
-
def _get_python_lib(repository_ctx, python_bin):
"""Gets the python lib path."""
python_lib = repository_ctx.os.environ.get(_PYTHON_LIB_PATH)
@@ -201,14 +184,14 @@ def _get_python_lib(repository_ctx, python_bin):
" print(paths[0])\n" +
"END")
cmd = '%s - %s' % (python_bin, print_lib)
- result = repository_ctx.execute([_get_bash_bin(repository_ctx), "-c", cmd])
+ result = repository_ctx.execute(["bash", "-c", cmd])
return result.stdout.strip('\n')
def _check_python_lib(repository_ctx, python_lib):
"""Checks the python lib path."""
cmd = 'test -d "%s" -a -x "%s"' % (python_lib, python_lib)
- result = repository_ctx.execute([_get_bash_bin(repository_ctx), "-c", cmd])
+ result = repository_ctx.execute(["bash", "-c", cmd])
if result.return_code == 1:
_fail("Invalid python library path: %s" % python_lib)
@@ -216,7 +199,7 @@ def _check_python_lib(repository_ctx, python_lib):
def _check_python_bin(repository_ctx, python_bin):
"""Checks the python bin path."""
cmd = '[[ -x "%s" ]] && [[ ! -d "%s" ]]' % (python_bin, python_bin)
- result = repository_ctx.execute([_get_bash_bin(repository_ctx), "-c", cmd])
+ result = repository_ctx.execute(["bash", "-c", cmd])
if result.return_code == 1:
_fail("--define %s='%s' is not executable. Is it the python binary?" % (
_PYTHON_BIN_PATH, python_bin))
@@ -311,7 +294,6 @@ def _python_autoconf_impl(repository_ctx):
python_configure = repository_rule(
implementation = _python_autoconf_impl,
environ = [
- _BAZEL_SH,
_PYTHON_BIN_PATH,
_PYTHON_LIB_PATH,
_TF_PYTHON_CONFIG_REPO,
diff --git a/third_party/repo.bzl b/third_party/repo.bzl
index cb67d3e961..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):
@@ -87,9 +88,7 @@ def _tf_http_archive(ctx):
if ctx.attr.patch_file != None:
_apply_patch(ctx, ctx.attr.patch_file)
if ctx.attr.build_file != None:
- # Use BUILD.bazel to avoid conflict with third party projects with
- # BUILD or build (directory) underneath.
- ctx.template("BUILD.bazel", ctx.attr.build_file, {
+ ctx.template("BUILD", ctx.attr.build_file, {
"%prefix%": ".." if _repos_are_siblings() else "external",
}, False)