Skip to content

Commit 4e6b973

Browse files
committed
fix src/headers brackets
1 parent 5c4e93f commit 4e6b973

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extension/data_loader/targets.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ def define_common_targets():
7171
name = "mmap_data_loader",
7272
srcs = [
7373
"mmap_data_loader.cpp"
74-
] + ["mman_windows.cpp"] if host_info().os.is_windows else [],
75-
exported_headers = [
74+
] + (["mman_windows.cpp"] if host_info().os.is_windows else []),
75+
headers = [
7676
"mman.h",
77-
"mmap_data_loader.h",
78-
] + ["mman_windows.h"] if host_info().os.is_windows else [],
77+
] + (["mman_windows.h"] if host_info().os.is_windows else []),
78+
exported_headers = ["mmap_data_loader.h"],
7979
visibility = [
8080
"//executorch/test/...",
8181
"//executorch/extension/pybindings/...",

0 commit comments

Comments
 (0)