summaryrefslogtreecommitdiffstats
path: root/extras/gomemif/memif/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'extras/gomemif/memif/BUILD.bazel')
-rw-r--r--extras/gomemif/memif/BUILD.bazel17
1 files changed, 17 insertions, 0 deletions
diff --git a/extras/gomemif/memif/BUILD.bazel b/extras/gomemif/memif/BUILD.bazel
new file mode 100644
index 00000000000..e6539ff59bd
--- /dev/null
+++ b/extras/gomemif/memif/BUILD.bazel
@@ -0,0 +1,17 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+ name = "memif",
+ srcs = [
+ "interface.go",
+ "interface_unsafe.go",
+ "control_channel.go",
+ "control_channel_unsafe.go",
+ "memif.go",
+ "memif_unsafe.go",
+ "packet_writer.go",
+ "packet_reader.go",
+ ],
+ importpath = "memif",
+ visibility = ["//visibility:public",],
+)