We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6170804 commit a3296edCopy full SHA for a3296ed
extension/data_loader/targets.bzl
@@ -72,10 +72,11 @@ def define_common_targets():
72
srcs = [
73
"mmap_data_loader.cpp"
74
] + (["mman_windows.cpp"] if host_info().os.is_windows else []),
75
- headers = [
+ headers = ["mman_windows.h"] if host_info().os.is_windows else [],
76
+ exported_headers = [
77
"mman.h",
- ] + (["mman_windows.h"] if host_info().os.is_windows else []),
78
- exported_headers = ["mmap_data_loader.h"],
+ "mmap_data_loader.h"
79
+ ],
80
visibility = [
81
"//executorch/test/...",
82
"//executorch/extension/pybindings/...",
0 commit comments