forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUCK
More file actions
19 lines (17 loc) · 605 Bytes
/
BUCK
File metadata and controls
19 lines (17 loc) · 605 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
oncall("executorch")
fbcode_target(_kind = runtime.python_library,
name = "etrecord",
srcs = [
"__init__.py",
"_etrecord.py",
],
deps = [
"//executorch/devtools/bundled_program:core",
"//executorch/devtools/bundled_program/schema:bundled_program_schema_py",
"//executorch/exir:lib",
"//executorch/exir/emit:emit",
"//executorch/exir/serde:serialize",
],
)