aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/cpp/BUILD')
-rw-r--r--src/main/cpp/BUILD10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/main/cpp/BUILD b/src/main/cpp/BUILD
index c1f472b4fd..3a1239f088 100644
--- a/src/main/cpp/BUILD
+++ b/src/main/cpp/BUILD
@@ -4,8 +4,14 @@
filegroup(
name = "blaze_util_os",
srcs = select({
- "//src:darwin": ["blaze_util_darwin.cc"],
- "//conditions:default": ["blaze_util_linux.cc"],
+ "//src:darwin": [
+ "blaze_util_darwin.cc",
+ "blaze_util_posix.cc",
+ ],
+ "//conditions:default": [
+ "blaze_util_linux.cc",
+ "blaze_util_posix.cc",
+ ],
}),
)