xref: /aosp_15_r20/external/executorch/backends/xnnpack/operators/TARGETS (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
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