Adding tensorflow/core/platform:tensor_coding to tensorflow/core/BUILD.

PiperOrigin-RevId: 275937813
Change-Id: I752d902cd7e68fa16976ef115bff1ab46af5e855
This commit is contained in:
Brian Zhao 2019-10-21 15:31:31 -07:00 committed by TensorFlower Gardener
parent acbd582d58
commit a1d7db45f3
3 changed files with 4 additions and 2 deletions

View File

@ -2315,6 +2315,7 @@ cc_library(
"//tensorflow/core/platform:stringprintf",
"//tensorflow/core/platform:str_util",
"//tensorflow/core/platform:subprocess",
"//tensorflow/core/platform:tensor_coding",
"//tensorflow/core/platform:thread_annotations",
"//tensorflow/core/platform:threadpool_interface",
"//tensorflow/core/platform:threadpool_options",

View File

@ -509,10 +509,10 @@ cc_library(
":platform",
":protobuf",
":stringpiece",
":strcat",
":types",
"//tensorflow/core/lib/core:coding",
"//tensorflow/core/lib/core:refcount",
"//tensorflow/core/lib/strings:string_utils",
] + tf_additional_tensor_coding_deps(),
)
@ -789,6 +789,7 @@ filegroup(
"strcat.cc",
"stringprintf.cc",
"str_util.cc",
"tensor_coding.cc",
"threadpool.cc",
"tracing.cc",
],

View File

@ -18,8 +18,8 @@ limitations under the License.
#include <vector>
#include "tensorflow/core/lib/core/coding.h"
#include "tensorflow/core/lib/strings/strcat.h"
#include "tensorflow/core/platform/protobuf.h"
#include "tensorflow/core/platform/strcat.h"
#include "tensorflow/core/platform/stringpiece.h"
#if defined(TENSORFLOW_PROTOBUF_USES_CORD)