2024-11-21 01:21:33 +00:00
|
|
|
load("@local_xla//xla/tsl/platform/default:build_config.bzl", "py_proto_library")
|
2024-03-27 17:27:49 +00:00
|
|
|
|
2017-05-05 22:43:21 +00:00
|
|
|
package(
|
|
|
|
default_visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
licenses(["notice"]) # MIT
|
|
|
|
|
|
|
|
exports_files(["pprof/LICENSE"])
|
|
|
|
|
|
|
|
py_proto_library(
|
|
|
|
name = "pprof_proto_py",
|
2017-05-10 02:22:09 +00:00
|
|
|
srcs = ["proto/profile.proto"],
|
2019-06-19 17:22:59 +00:00
|
|
|
default_runtime = "@com_google_protobuf//:protobuf_python",
|
|
|
|
protoc = "@com_google_protobuf//:protoc",
|
2021-01-21 01:06:07 +00:00
|
|
|
srcs_version = "PY3",
|
2019-06-19 17:22:59 +00:00
|
|
|
deps = ["@com_google_protobuf//:protobuf_python"],
|
2017-05-05 22:43:21 +00:00
|
|
|
)
|