forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUCK
More file actions
28 lines (26 loc) · 944 Bytes
/
BUCK
File metadata and controls
28 lines (26 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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,
# @autodeps-skip for some reason autodeps thinks this target
# needs to depend on exir:lib which it doesn't.
name = "serialize",
srcs = [
"export_serialize.py",
"schema.py",
"schema_check.py",
"serialize.py",
"union.py",
],
deps = [
"fbsource//third-party/pypi/sympy:sympy",
"//caffe2:torch",
"//executorch/exir:delegate",
"//executorch/exir:lowered_backend_module",
"//executorch/exir:memory",
"//executorch/exir/backend:compile_spec_schema",
"//executorch/exir/dialects:lib",
"//executorch/exir/dialects/backend:lib",
"//executorch/exir/dialects/edge:lib",
],
)