mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-03 10:47:33 +00:00
These tags have been deprecated and are unused now. Syncing with upstream and removing them from the BUILD files. BUG=remove deprecated tags
24 lines
544 B
Text
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"),
|
|
],
|
|
)
|