diff options
Diffstat (limited to 'runsc/boot/pprof/BUILD')
-rw-r--r-- | runsc/boot/pprof/BUILD | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/runsc/boot/pprof/BUILD b/runsc/boot/pprof/BUILD new file mode 100644 index 000000000..29cb42b2f --- /dev/null +++ b/runsc/boot/pprof/BUILD @@ -0,0 +1,11 @@ +load("//tools:defs.bzl", "go_library") + +package(licenses = ["notice"]) + +go_library( + name = "pprof", + srcs = ["pprof.go"], + visibility = [ + "//runsc:__subpackages__", + ], +) |