aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-09-06 10:53:51 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-06 10:59:02 -0700
commit58857d06e671863ebacc025d0363d564a65bb7b0 (patch)
tree461297b81c01b86aee5c835ea753c6931481849a /tensorflow/core/BUILD
parent9638524520d582e93a8038a89cd5cc62d719a3b6 (diff)
Add feature_util build target so the library can be included in a lightweight way
PiperOrigin-RevId: 211833556
Diffstat (limited to 'tensorflow/core/BUILD')
-rw-r--r--tensorflow/core/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/tensorflow/core/BUILD b/tensorflow/core/BUILD
index c06fea130f..f74379fca5 100644
--- a/tensorflow/core/BUILD
+++ b/tensorflow/core/BUILD
@@ -702,6 +702,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"],
hdrs = ["platform/abi.h"],