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 5c4e93f commit 4e6b973Copy full SHA for 4e6b973
extension/data_loader/targets.bzl
@@ -71,11 +71,11 @@ def define_common_targets():
71
name = "mmap_data_loader",
72
srcs = [
73
"mmap_data_loader.cpp"
74
- ] + ["mman_windows.cpp"] if host_info().os.is_windows else [],
75
- exported_headers = [
+ ] + (["mman_windows.cpp"] if host_info().os.is_windows else []),
+ headers = [
76
"mman.h",
77
- "mmap_data_loader.h",
78
- ] + ["mman_windows.h"] if host_info().os.is_windows else [],
+ ] + (["mman_windows.h"] if host_info().os.is_windows else []),
+ exported_headers = ["mmap_data_loader.h"],
79
visibility = [
80
"//executorch/test/...",
81
"//executorch/extension/pybindings/...",
0 commit comments