blob: 3357b7200cfab59a4e1d3ea18b97d021483a9969 [file] [log] [blame]
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
python_library(
name = "utils",
srcs = [
"utils.py",
],
deps = [
"//executorch/exir:lib",
],
)
python_library(
name = "export_example",
srcs = [
"export_example.py",
],
deps = [
":utils",
"//executorch/examples/models:models",
"//executorch/exir:lib",
],
)