xref: /aosp_15_r20/external/executorch/exir/dialects/TARGETS (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
2
3oncall("executorch")
4
5python_library(
6    name = "lib",
7    srcs = [
8        "_ops.py",
9    ],
10    resources = {
11        "//executorch/exir/dialects/edge:edge_yaml": "edge.yaml",
12    },
13    deps = [
14        "//caffe2:torch",
15        "//caffe2/torchgen:torchgen",
16        "//executorch/exir/dialects/backend:lib",
17        "//executorch/exir/dialects/edge:lib",
18    ],
19)
20