diff --git a/tensorflow/tools/test/performance.bzl b/tensorflow/tools/test/performance.bzl index b5c4bbf5a70..cee53dd5b61 100644 --- a/tensorflow/tools/test/performance.bzl +++ b/tensorflow/tools/test/performance.bzl @@ -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, diff --git a/third_party/jpeg/jpeg.BUILD b/third_party/jpeg/jpeg.BUILD index e431f193822..527a08c4b37 100644 --- a/third_party/jpeg/jpeg.BUILD +++ b/third_party/jpeg/jpeg.BUILD @@ -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", diff --git a/third_party/sycl/sycl/BUILD.tpl b/third_party/sycl/sycl/BUILD.tpl index b6ceaadda7c..21b1a2bbf7d 100755 --- a/third_party/sycl/sycl/BUILD.tpl +++ b/third_party/sycl/sycl/BUILD.tpl @@ -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"])