xref: /aosp_15_r20/external/executorch/devtools/etrecord/TARGETS (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
2
3oncall("executorch")
4
5python_library(
6    name = "etrecord",
7    srcs = [
8        "__init__.py",
9        "_etrecord.py",
10    ],
11    deps = [
12        "//executorch/devtools/bundled_program:core",
13        "//executorch/devtools/bundled_program/schema:bundled_program_schema_py",
14        "//executorch/exir:lib",
15        "//executorch/exir/emit:emit",
16        "//executorch/exir/serde:serialize",
17    ],
18)
19