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 cb8ffe7 commit 3536338Copy full SHA for 3536338
tensorflow_io/core/BUILD
@@ -744,6 +744,18 @@ cc_binary(
744
}),
745
)
746
747
+cc_binary(
748
+ name = "python/ops/libtensorflow_io_plugins.so",
749
+ copts = tf_io_copts(),
750
+ linkshared = 1,
751
+ deps = select({
752
+ "//tensorflow_io/core:static_build_on": [],
753
+ "//conditions:default": [
754
+ "//tensorflow_io/core/plugins:plugins",
755
+ ],
756
+ }),
757
+)
758
+
759
cc_binary(
760
name = "python/ops/libtensorflow_io_golang.so",
761
copts = tf_io_copts(),
tensorflow_io/core/plugins/http/BUILD
@@ -7,15 +7,6 @@ load(
7
"tf_io_copts",
8
9
10
-cc_binary(
11
- name = "_gcs_config_ops.so",
12
- copts = tf_io_copts(),
13
- linkshared = 1,
14
- deps = [
15
- ":gcs_config_ops",
16
- ],
17
-)
18
-
19
cc_library(
20
name = "http",
21
srcs = [
0 commit comments