Internal change

PiperOrigin-RevId: 477538515
This commit is contained in:
MediaPipe Team
2022-09-28 21:32:36 +00:00
committed by Sebastian Schmidt
parent 6cdc6443b6
commit f8af41b1eb
236 changed files with 12865 additions and 1923 deletions
+19
View File
@@ -0,0 +1,19 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # FFTPACKv5 License.
exports_files(["LICENSE"])
cc_library(
name = "pffft",
srcs = ["pffft.c"],
hdrs = ["pffft.h"],
copts = select({
"@bazel_tools//src/conditions:windows": [
"/D_USE_MATH_DEFINES",
"/W0",
],
"//conditions:default": [],
}),
visibility = ["//visibility:public"],
)