1load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime") 2 3oncall("executorch") 4 5runtime.python_library( 6 name = "operators", 7 srcs = glob(["*.py"]), 8 visibility = [ 9 "//executorch/...", 10 "@EXECUTORCH_CLIENTS", 11 ], 12 deps = [ 13 "//executorch/backends/xnnpack/utils:xnnpack_utils", 14 "//executorch/exir:graph_module", 15 "//executorch/exir/backend:backend_details", 16 ], 17) 18