tflite-micro/tensorflow/lite/python/BUILD
suleshahid bc68d362d6
Remove deprecated BUILD tags (#3091)
These tags have been deprecated and are unused now. Syncing with upstream and removing them from the BUILD files.

BUG=remove deprecated tags
2025-04-08 19:21:25 +00:00

24 lines
544 B
Text

load("@flatbuffers//:build_defs.bzl", "flatbuffer_py_library")
load("@tflm_pip_deps//:requirements.bzl", "requirement")
package(
default_visibility = [
"//visibility:public",
],
licenses = ["notice"],
)
flatbuffer_py_library(
name = "schema_py",
srcs = ["//tensorflow/compiler/mlir/lite/schema:schema.fbs"],
)
py_library(
name = "schema_util",
srcs = ["schema_util.py"],
visibility = ["//:__subpackages__"],
deps = [
requirement("flatbuffers"),
requirement("tensorflow"),
],
)