1# Description: 2# Contains User Ops (internal TensorFlow version). 3 4load("//tensorflow/python:build_defs.bzl", "tf_gen_op_wrapper_private_py") 5 6visibility = [ 7 "//tensorflow:internal", 8] 9 10package( 11 default_visibility = visibility, 12 licenses = ["notice"], 13) 14 15tf_gen_op_wrapper_private_py( 16 name = "user_ops_gen", 17) 18 19# This target is deprecated. 20py_library( 21 name = "ops", 22 srcs = ["user_ops.py"], 23 srcs_version = "PY3", 24 deps = [ 25 ":user_ops_gen", 26 "//tensorflow/python/util", 27 "@six_archive//:six", 28 ], 29) 30