19 lines
466 B
Plaintext
19 lines
466 B
Plaintext
|
package(
|
||
|
default_visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
licenses(["notice"]) # MIT
|
||
|
|
||
|
load("@com_google_protobuf//:protobuf.bzl", "py_proto_library")
|
||
|
|
||
|
exports_files(["pprof/LICENSE"])
|
||
|
|
||
|
py_proto_library(
|
||
|
name = "pprof_proto_py",
|
||
|
srcs = ["proto/profile.proto"],
|
||
|
default_runtime = "@com_google_protobuf//:protobuf_python",
|
||
|
protoc = "@com_google_protobuf//:protoc",
|
||
|
srcs_version = "PY3",
|
||
|
deps = ["@com_google_protobuf//:protobuf_python"],
|
||
|
)
|