mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
chore: Add BUILD file for websockify.
This commit is contained in:
parent
4d79001991
commit
c9d3e078e2
15
other/bootstrap_daemon/websocket/websockify/BUILD.bazel
Normal file
15
other/bootstrap_daemon/websocket/websockify/BUILD.bazel
Normal file
|
@ -0,0 +1,15 @@
|
|||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["websockify.go"],
|
||||
importpath = "github.com/TokTok/c-toxcore/other/bootstrap_daemon/websocket/websockify",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = ["@com_github_gorilla_websocket//:go_default_library"],
|
||||
)
|
||||
|
||||
go_binary(
|
||||
name = "websockify",
|
||||
embed = [":go_default_library"],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
Loading…
Reference in New Issue
Block a user