From d5f3097b12ae9aea9f69060710a1576693ccb1b7 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 16 May 2018 17:24:39 -0700 Subject: [PATCH] Remove no-op statement. tf_additional_lib_srcs only selects .cc files. When we do tf_additional_lib_srcs(exclude=[**/*.cc]) we are selecting zero files, and the statement can be safely removed. PiperOrigin-RevId: 196916359 --- tensorflow/core/BUILD | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tensorflow/core/BUILD b/tensorflow/core/BUILD index bbe30c4..f611b33 100644 --- a/tensorflow/core/BUILD +++ b/tensorflow/core/BUILD @@ -1661,13 +1661,6 @@ LIB_INTERNAL_PRIVATE_HEADERS = ["framework/resource_handle.h"] + glob( "platform/**/cuda.h", "platform/**/stream_executor.h", ], -) + tf_additional_lib_srcs( - exclude = [ - "**/*.cc", - "**/*test*", - "platform/**/cuda.h", - "platform/**/stream_executor.h", - ], ) LIB_INTERNAL_PUBLIC_HEADERS = tf_additional_lib_hdrs() + [ -- 2.7.4