| 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", | |
| ], | |
| ) |