STT-tensorflow/third_party/pprof.BUILD
Mihai Maruseac 338c2f269b Cleanup usage of the protobuf workspace. See #19032
PiperOrigin-RevId: 254021621
2019-06-19 10:36:33 -07:00

19 lines
470 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 = "PY2AND3",
deps = ["@com_google_protobuf//:protobuf_python"],
)