Files
Etienne PerotandgVisor bot a5fbf8ba58 Create tool to merge profiles together and compact them.
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
2024-07-01 15:01:17 -07:00

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",
],
)