From 58857d06e671863ebacc025d0363d564a65bb7b0 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 6 Sep 2018 10:53:51 -0700 Subject: [PATCH] Add feature_util build target so the library can be included in a lightweight way PiperOrigin-RevId: 211833556 --- tensorflow/core/BUILD | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tensorflow/core/BUILD b/tensorflow/core/BUILD index c06fea130f5..f74379fca50 100644 --- a/tensorflow/core/BUILD +++ b/tensorflow/core/BUILD @@ -701,6 +701,21 @@ cc_library( ], ) +cc_library( + name = "feature_util", + srcs = ["example/feature_util.cc"], + hdrs = [ + "example/feature_util.h", + "platform/types.h", + ], + visibility = ["//visibility:public"], + deps = [ + ":core_stringpiece", + ":platform_protobuf", + ":protos_all_cc", + ], +) + cc_library( name = "abi", srcs = ["platform/abi.cc"],