chore: import upstream snapshot with attribution
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:14:16 +08:00
commit 8a852e4b4e
36502 changed files with 9277225 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# 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(
# copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
default_visibility = ["//visibility:private"],
licenses = ["notice"],
)
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",
"@com_google_absl//absl/status",
],
)
tf_cc_binary(
name = "frommlpbtxt",
srcs = ["frommlpbtxt.cc"],
deps = [
"//tensorflow/core:framework_internal",
"//tensorflow/core:lib",
"//tensorflow/core:op_gen_lib",
"@com_google_absl//absl/status",
],
)