aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/data/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/data/BUILD')
-rw-r--r--tensorflow/contrib/data/BUILD13
1 files changed, 12 insertions, 1 deletions
diff --git a/tensorflow/contrib/data/BUILD b/tensorflow/contrib/data/BUILD
index eaede0e00e..7bcf5a5f4d 100644
--- a/tensorflow/contrib/data/BUILD
+++ b/tensorflow/contrib/data/BUILD
@@ -35,8 +35,19 @@ tf_custom_op_library(
],
)
+# TODO(mrry): Move the kernels out of the core library into this library.
+tf_custom_op_library(
+ name = "_dataset_ops.so",
+ srcs = [
+ "ops/dataset_ops.cc",
+ ],
+)
+
tf_gen_op_libs(
- op_lib_names = ["prefetching_ops"],
+ op_lib_names = [
+ "dataset_ops",
+ "prefetching_ops",
+ ],
)
filegroup(