xref: /aosp_15_r20/external/executorch/devtools/debug_format/TARGETS (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
2
3oncall("executorch")
4
5python_library(
6    name = "base_schema",
7    srcs = [
8        "base_schema.py",
9    ],
10    deps = [
11    ],
12)
13
14python_library(
15    name = "et_schema",
16    srcs = [
17        "et_schema.py",
18    ],
19    deps = [
20        ":base_schema",
21        "//caffe2:torch",
22        "//executorch/exir:lib",
23    ],
24)
25