1package( 2 default_visibility = ["//tensorflow:internal"], 3 licenses = ["notice"], 4) 5 6py_library( 7 name = "signal", 8 srcs = [ 9 "dct_ops.py", 10 "fft_ops.py", 11 "mel_ops.py", 12 "mfcc_ops.py", 13 "reconstruction_ops.py", 14 "shape_ops.py", 15 "signal.py", 16 "spectral_ops.py", 17 "util_ops.py", 18 "window_ops.py", 19 ], 20 srcs_version = "PY3", 21 deps = [ 22 "//tensorflow/python:array_ops", 23 "//tensorflow/python:constant_op", 24 "//tensorflow/python:control_flow_ops", 25 "//tensorflow/python:dtypes", 26 "//tensorflow/python:framework", 27 "//tensorflow/python:framework_for_generated_wrappers", 28 "//tensorflow/python:framework_ops", 29 "//tensorflow/python:math_ops", 30 "//tensorflow/python:spectral_ops_gen", 31 "//tensorflow/python:tensor_util", 32 "//tensorflow/python:util", 33 "//third_party/py/numpy", 34 ], 35) 36