diff options
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/BUILD b/BUILD deleted file mode 100644 index 76286174f..000000000 --- a/BUILD +++ /dev/null @@ -1,57 +0,0 @@ -package(licenses = ["notice"]) # Apache 2.0 - -load("@io_bazel_rules_go//go:def.bzl", "go_path", "nogo") -load("@bazel_gazelle//:def.bzl", "gazelle") - -# The sandbox filegroup is used for sandbox-internal dependencies. -package_group( - name = "sandbox", - packages = [ - "//...", - ], -) - -# gopath defines a directory that is structured in a way that is compatible -# with standard Go tools. Things like godoc, editors and refactor tools should -# work as expected. -# -# The files in this tree are symlinks to the true sources. -go_path( - name = "gopath", - mode = "link", - deps = [ - "//runsc", - - # Packages that are not dependencies of //runsc. - "//pkg/sentry/kernel/memevent", - "//pkg/tcpip/adapters/gonet", - "//pkg/tcpip/link/channel", - "//pkg/tcpip/link/muxed", - "//pkg/tcpip/link/sharedmem", - "//pkg/tcpip/link/sharedmem/pipe", - "//pkg/tcpip/link/sharedmem/queue", - "//pkg/tcpip/link/tun", - "//pkg/tcpip/link/waitable", - "//pkg/tcpip/sample/tun_tcp_connect", - "//pkg/tcpip/sample/tun_tcp_echo", - "//pkg/tcpip/transport/tcpconntrack", - ], -) - -# gazelle is a set of build tools. -# -# To update the WORKSPACE from go.mod, use: -# bazel run //:gazelle -- update-repos -from_file=go.mod -gazelle(name = "gazelle") - -# nogo applies checks to all Go source in this repository, enforcing code -# guidelines and restrictions. Note that the tool libraries themselves should -# live in the tools subdirectory (unless they are standard). -nogo( - name = "nogo", - config = "tools/nogo.js", - visibility = ["//visibility:public"], - deps = [ - "//tools/checkunsafe", - ], -) |