Add feature_util build target so the library can be included in a lightweight way

PiperOrigin-RevId: 211833556
This commit is contained in:
A. Unique TensorFlower 2018-09-06 10:53:51 -07:00 committed by TensorFlower Gardener
parent 9638524520
commit 58857d06e6

View File

@ -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"],