mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
e435325dab
PiperOrigin-RevId: 698575496
19 lines
484 B
Plaintext
19 lines
484 B
Plaintext
load("@local_xla//xla/tsl/platform/default:build_config.bzl", "py_proto_library")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # MIT
|
|
|
|
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"],
|
|
)
|