STT-tensorflow/tensorflow/tools/mlpbtxt/BUILD
A. Unique TensorFlower 03bc963659 BUILD file cleanup
PiperOrigin-RevId: 334697755
Change-Id: I34b8a6d19c5e3733314707de345a891944657ce0
2020-09-30 16:08:07 -07:00

33 lines
768 B
Python

# Description:
# This package provides binaries that convert between multi-line and standard
# pbtxt (text-serialization of protocol message) files.
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
package(
default_visibility = ["//visibility:private"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["placeholder.txt"])
tf_cc_binary(
name = "tomlpbtxt",
srcs = ["tomlpbtxt.cc"],
deps = [
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:op_gen_lib",
],
)
tf_cc_binary(
name = "frommlpbtxt",
srcs = ["frommlpbtxt.cc"],
deps = [
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:op_gen_lib",
],
)