xref: /aosp_15_r20/external/executorch/backends/cadence/runtime/TARGETS (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
2
3oncall("odai_jarvis")
4
5python_library(
6    name = "runtime",
7    srcs = [
8        "__init__.py",
9        "executor.py",
10    ] + glob([
11        "xtsc-cfg/**/*",
12    ]),
13    typing = True,
14    deps = [
15        "//caffe2:torch",
16        "//executorch/devtools/bundled_program:config",
17        "//executorch/devtools/bundled_program:core",
18        "//executorch/devtools/bundled_program/serialize:lib",
19        "//executorch/exir:lib",
20    ],
21)
22