github.com/johnnyeven/libtools@v0.0.0-20191126065708-61829c1adf46/third_party/fft2d/BUILD (about) 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 6 package( 7 default_visibility = ["//visibility:public"], 8 ) 9 10 # Unrestricted use; can only distribute original package. 11 # See fft/readme.txt 12 licenses(["notice"]) 13 14 exports_files(["LICENSE"]) 15 16 cc_library( 17 name = "fft2d_headers", 18 srcs = [ 19 "fft.h", 20 "fft2d.h", 21 ], 22 ) 23 24 objc_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. 33 filegroup( 34 name = "fft2d_headers_srcs", 35 srcs = [ 36 "fft.h", 37 "fft2d.h", 38 ], 39 ) 40 41 filegroup( 42 name = "all_files", 43 srcs = glob( 44 ["**/*"], 45 exclude = ["**/OWNERS"], 46 ), 47 visibility = ["//tensorflow:__subpackages__"], 48 )