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