xref: /aosp_15_r20/external/executorch/devtools/backend_debug/TARGETS (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
2
3oncall("executorch")
4
5runtime.python_library(
6    name = "delegation_info",
7    srcs = [
8        "__init__.py",
9        "delegation_info.py",
10    ],
11    visibility = [
12        "//executorch/...",
13        "//executorch/exir/backend/...",
14        "//executorch/test/...",
15        "@EXECUTORCH_CLIENTS",
16    ],
17    deps = [
18        "fbsource//third-party/pypi/pandas:pandas",
19        "//caffe2:torch",
20        "//executorch/exir:lowered_backend_module",
21        "//executorch/exir/backend/canonical_partitioners:duplicate_constant_node_pass",
22    ],
23)
24