diff options
author | Jamie Liu <jamieliu@google.com> | 2021-09-03 19:07:12 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-09-03 19:12:54 -0700 |
commit | 775a321120f09420ef37ba9455371f193380a695 (patch) | |
tree | cadd1e37b903dcb6b24965ec79787244038831d4 /tools/go_fieldenum/BUILD | |
parent | 2aeab259c4d24f87d7788fed338b64d99e0865ec (diff) |
Add //pkg/sentry/seccheck.
This defines common infrastructure for dynamically-configured security checks,
including an example usage in the clone(2) path.
PiperOrigin-RevId: 394797270
Diffstat (limited to 'tools/go_fieldenum/BUILD')
-rw-r--r-- | tools/go_fieldenum/BUILD | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/go_fieldenum/BUILD b/tools/go_fieldenum/BUILD new file mode 100644 index 000000000..2bfdaeb2f --- /dev/null +++ b/tools/go_fieldenum/BUILD @@ -0,0 +1,15 @@ +load("//tools:defs.bzl", "bzl_library", "go_binary") + +licenses(["notice"]) + +go_binary( + name = "fieldenum", + srcs = ["main.go"], + visibility = ["//:sandbox"], +) + +bzl_library( + name = "defs_bzl", + srcs = ["defs.bzl"], + visibility = ["//visibility:private"], +) |