aboutsummaryrefslogtreecommitdiffstats
path: root/extras/gomemif/examples/BUILD.bazel
blob: a88b92e37f111c7b974bd980771e71ec2fc542da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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",
    ],
)