mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
This will be useful for PGO builds in order to generate a single profile that can span the results of multiple benchmarks. PiperOrigin-RevId: 648495580
20 lines
375 B
Python
20 lines
375 B
Python
load("//tools:defs.bzl", "go_binary")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "profiletool",
|
|
srcs = ["profiletool.go"],
|
|
visibility = [
|
|
"//:sandbox",
|
|
],
|
|
deps = [
|
|
"//pkg/log",
|
|
"//runsc/flag",
|
|
"@com_github_google_pprof//profile:go_default_library",
|
|
],
|
|
)
|