File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -30,16 +30,18 @@ runtime.genrule(
30
30
srcs = [":pybinding_types"],
31
31
outs = {
32
32
"aten_lib.pyi": ["aten_lib.pyi"],
33
+ "core.pyi": ["core.pyi"],
33
34
"_portable_lib.pyi": ["_portable_lib.pyi"],
34
35
},
35
- cmd = "cp $(location :pybinding_types)/* $OUT/_portable_lib.pyi && cp $(location :pybinding_types)/* $OUT/aten_lib.pyi",
36
+ cmd = "cp $(location :pybinding_types)/* $OUT/_portable_lib.pyi && cp $(location :pybinding_types)/* $OUT/aten_lib.pyi && cp $(location :pybinding_types)/* $OUT/core.pyi ",
36
37
visibility = ["//executorch/extension/pybindings/..."],
37
38
)
38
39
39
40
executorch_pybindings(
40
41
compiler_flags = ["-std=c++17"],
41
42
cppdeps = PORTABLE_MODULE_DEPS,
42
43
python_module_name = "core",
44
+ types = ["//executorch/extension/pybindings:pybindings_types_gen[core.pyi]"],
43
45
visibility = ["PUBLIC"],
44
46
)
45
47
You can’t perform that action at this time.
0 commit comments