• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Description:
2# This package provides binaries that convert between multi-line and standard
3# pbtxt (text-serialization of protocol message) files.
4
5package(default_visibility = ["//visibility:private"])
6
7licenses(["notice"])  # Apache 2.0
8
9load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
10
11exports_files([
12    "LICENSE",
13    "placeholder.txt",
14])
15
16tf_cc_binary(
17    name = "tomlpbtxt",
18    srcs = ["tomlpbtxt.cc"],
19    deps = [
20        "//tensorflow/core:framework_internal",
21        "//tensorflow/core:lib",
22        "//tensorflow/core:op_gen_lib",
23    ],
24)
25
26tf_cc_binary(
27    name = "frommlpbtxt",
28    srcs = ["frommlpbtxt.cc"],
29    deps = [
30        "//tensorflow/core:framework_internal",
31        "//tensorflow/core:lib",
32        "//tensorflow/core:op_gen_lib",
33    ],
34)
35