1# Headers for 2D Fast Fourier Transform package 2# from http://momonga.t.u-tokyo.ac.jp/~ooura/fft2d.html 3# This is a separate package because the original downloaded archive doesn't 4# contain any header files. 5 6package( 7 default_visibility = ["//visibility:public"], 8) 9 10# Unrestricted use; can only distribute original package. 11# See fft/readme.txt 12licenses(["notice"]) 13 14exports_files(["LICENSE"]) 15 16cc_library( 17 name = "fft2d_headers", 18 srcs = [ 19 "fft.h", 20 "fft2d.h", 21 ], 22) 23 24objc_library( 25 name = "fft2d_headersd_ios", 26 srcs = [ 27 "fft.h", 28 "fft2d.h", 29 ], 30) 31 32# Export the source code so that it could be compiled for Andoid native apps. 33filegroup( 34 name = "fft2d_headers_srcs", 35 srcs = [ 36 "fft.h", 37 "fft2d.h", 38 ], 39) 40 41filegroup( 42 name = "all_files", 43 srcs = glob( 44 ["**/*"], 45 exclude = ["**/OWNERS"], 46 ), 47 visibility = ["//third_party/tensorflow:__subpackages__"], 48) 49