We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96ad01d commit c5f3507Copy full SHA for c5f3507
tensorflow_io/core/filesystems/BUILD
@@ -36,10 +36,15 @@ cc_library(
36
linkstatic = True,
37
deps = [
38
"//tensorflow_io/core/filesystems/az",
39
- "//tensorflow_io/core/filesystems/dfs",
40
"//tensorflow_io/core/filesystems/hdfs",
41
"//tensorflow_io/core/filesystems/http",
42
"//tensorflow_io/core/filesystems/s3",
43
- ],
+ ] + select({
+ "@bazel_tools//src/conditions:windows": [],
44
+ "@bazel_tools//src/conditions:darwin": [],
45
+ "//conditions:default": [
46
+ "//tensorflow_io/core/filesystems/dfs",
47
+ ],
48
+ }),
49
alwayslink = 1,
50
)
0 commit comments