summaryrefslogtreecommitdiffhomepage
path: root/pkg/abi/linux/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/abi/linux/BUILD')
-rw-r--r--pkg/abi/linux/BUILD86
1 files changed, 86 insertions, 0 deletions
diff --git a/pkg/abi/linux/BUILD b/pkg/abi/linux/BUILD
new file mode 100644
index 000000000..2b789c4ec
--- /dev/null
+++ b/pkg/abi/linux/BUILD
@@ -0,0 +1,86 @@
+load("//tools:defs.bzl", "go_library", "go_test")
+
+# Package linux contains the constants and types needed to interface with a
+# Linux kernel. It should be used instead of syscall or golang.org/x/sys/unix
+# when the host OS may not be Linux.
+
+package(licenses = ["notice"])
+
+go_library(
+ name = "linux",
+ srcs = [
+ "aio.go",
+ "arch_amd64.go",
+ "audit.go",
+ "bpf.go",
+ "capability.go",
+ "clone.go",
+ "dev.go",
+ "elf.go",
+ "epoll.go",
+ "epoll_amd64.go",
+ "epoll_arm64.go",
+ "errors.go",
+ "eventfd.go",
+ "exec.go",
+ "fadvise.go",
+ "fcntl.go",
+ "file.go",
+ "file_amd64.go",
+ "file_arm64.go",
+ "fs.go",
+ "futex.go",
+ "inotify.go",
+ "ioctl.go",
+ "ioctl_tun.go",
+ "ip.go",
+ "ipc.go",
+ "limits.go",
+ "linux.go",
+ "mm.go",
+ "netdevice.go",
+ "netfilter.go",
+ "netlink.go",
+ "netlink_route.go",
+ "poll.go",
+ "prctl.go",
+ "ptrace.go",
+ "ptrace_amd64.go",
+ "ptrace_arm64.go",
+ "rseq.go",
+ "rusage.go",
+ "sched.go",
+ "seccomp.go",
+ "sem.go",
+ "shm.go",
+ "signal.go",
+ "signalfd.go",
+ "socket.go",
+ "splice.go",
+ "tcp.go",
+ "time.go",
+ "timer.go",
+ "tty.go",
+ "uio.go",
+ "utsname.go",
+ "wait.go",
+ "xattr.go",
+ ],
+ marshal = True,
+ visibility = ["//visibility:public"],
+ deps = [
+ "//pkg/abi",
+ "//pkg/binary",
+ "//pkg/bits",
+ ],
+)
+
+go_test(
+ name = "linux_test",
+ size = "small",
+ srcs = ["netfilter_test.go"],
+ library = ":linux",
+ deps = [
+ "//pkg/binary",
+ ],
+)