Fix some build incompatibilities with new versions of Bazel

See #15137.

PiperOrigin-RevId: 178037461
This commit is contained in:
Austin Anderson 2017-12-05 17:36:42 -08:00 committed by TensorFlower Gardener
parent fb857dcef9
commit d9a71ad0e5
3 changed files with 11 additions and 6 deletions

View File

@ -21,8 +21,9 @@ def tf_cc_logged_benchmark(
fail(" ".join(("Target must be a single well-defined test, e.g.,",
"//path/to:test. Received: %s" % target)))
all_tags = list(depset(tags) + \
depset(["benchmark-test", "local", "manual", "regression-test"]))
all_tags = (
depset(tags) + depset(
["benchmark-test", "local", "manual", "regression-test"])).to_list()
tf_py_test(
name = name,

View File

@ -323,14 +323,18 @@ JCONFIG_NOWIN_COMMON_SUBSTITUTIONS = {
"#undef RIGHT_SHIFT_IS_UNSIGNED": "",
}
JCONFIG_NOWIN_SIMD_SUBSTITUTIONS = JCONFIG_NOWIN_COMMON_SUBSTITUTIONS + {
JCONFIG_NOWIN_SIMD_SUBSTITUTIONS = {
"#undef WITH_SIMD": "#define WITH_SIMD 1",
}
JCONFIG_NOWIN_NOSIMD_SUBSTITUTIONS = JCONFIG_NOWIN_COMMON_SUBSTITUTIONS + {
JCONFIG_NOWIN_NOSIMD_SUBSTITUTIONS = {
"#undef WITH_SIMD": "",
}
JCONFIG_NOWIN_SIMD_SUBSTITUTIONS.update(JCONFIG_NOWIN_COMMON_SUBSTITUTIONS)
JCONFIG_NOWIN_NOSIMD_SUBSTITUTIONS.update(JCONFIG_NOWIN_COMMON_SUBSTITUTIONS)
template_rule(
name = "jconfig_nowin_nosimd",
src = "jconfig.h.in",

View File

@ -1,9 +1,9 @@
licenses(["notice"]) # Apache 2.0
load("@local_config_sycl//sycl:build_defs.bzl", "if_sycl")
load("platform", "sycl_library_path")
load(":platform.bzl", "sycl_library_path")
load("platform", "readlink_command")
load(":platform.bzl", "readlink_command")
package(default_visibility = ["//visibility:public"])