From 07363a45fe4a7fe693acf438f0b56f927bdd3fbd Mon Sep 17 00:00:00 2001 From: Jakub Grajciar Date: Thu, 2 Apr 2020 10:02:17 +0200 Subject: gomemif: introduce gomemif golang native memif driver Type: feature Signed-off-by: Jakub Grajciar Change-Id: I693156a44011c80025245d25134f5bf5db6eba82 Signed-off-by: Jakub Grajciar --- extras/gomemif/examples/BUILD.bazel | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 extras/gomemif/examples/BUILD.bazel (limited to 'extras/gomemif/examples/BUILD.bazel') diff --git a/extras/gomemif/examples/BUILD.bazel b/extras/gomemif/examples/BUILD.bazel new file mode 100644 index 00000000000..a88b92e37f1 --- /dev/null +++ b/extras/gomemif/examples/BUILD.bazel @@ -0,0 +1,21 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_binary") + +go_binary( + name = "responder", + srcs = ["responder.go"], + visibility = ["//visibility:public",], + deps = [ + "//memif:memif", + "@com_github_profile//:go_default_library", + ], +) + +go_binary( + name = "bridge", + srcs = ["bridge.go"], + visibility = ["//visibility:public",], + deps = [ + "//memif:memif", + "@com_github_profile//:go_default_library", + ], +) -- cgit 1.2.3-korg