mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
19 lines
389 B
Text
19 lines
389 B
Text
load("@rules_python//python:defs.bzl", "py_binary")
|
|
load("//python:py_rules.bzl", "tflm_py_test")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
py_binary(
|
|
name = "expand_stamp_vars",
|
|
srcs = ["expand_stamp_vars.py"],
|
|
)
|
|
|
|
tflm_py_test(
|
|
name = "expand_stamp_vars_test",
|
|
srcs = ["expand_stamp_vars_test.py"],
|
|
deps = [
|
|
":expand_stamp_vars",
|
|
],
|
|
)
|