aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/arm_neon_2_x86_sse.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/arm_neon_2_x86_sse.BUILD')
-rw-r--r--third_party/arm_neon_2_x86_sse.BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/arm_neon_2_x86_sse.BUILD b/third_party/arm_neon_2_x86_sse.BUILD
new file mode 100644
index 0000000000..6c641a7f4e
--- /dev/null
+++ b/third_party/arm_neon_2_x86_sse.BUILD
@@ -0,0 +1,16 @@
+# Description:
+# NEON2SSE - a header file redefining ARM Neon intrinsics in terms of SSE intrinsics
+# allowing neon code to compile and run on x64/x86 workstantions.
+
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"]) # 3-Clause BSD
+
+exports_files([
+ "LICENSE",
+])
+
+cc_library(
+ name = "arm_neon_2_x86_sse",
+ hdrs = ["NEON_2_SSE.h"],
+)