1load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime") 2 3oncall("executorch") 4 5runtime.python_library( 6 name = "export_util", 7 srcs = [ 8 "utils.py", 9 ], 10 _is_external_target = True, 11 visibility = [ 12 "//bento/...", 13 "//bento_kernels/...", 14 "//executorch/...", 15 ], 16 deps = [ 17 "//caffe2:torch", 18 "//executorch/exir:lib", 19 "//executorch/exir:tracer", 20 "//executorch/exir/program:lib", 21 ], 22) 23