aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/pprof.BUILD
blob: edd52095949cfdeff5cde3a1c696fe419b01a016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package(
    default_visibility = ["//visibility:public"],
)

licenses(["notice"])  # MIT

load("@protobuf//:protobuf.bzl", "py_proto_library")

exports_files(["pprof/LICENSE"])

py_proto_library(
    name = "pprof_proto_py",
    srcs = ["proto/profile.proto"],
    default_runtime = "@protobuf//:protobuf_python",
    protoc = "@protobuf//:protoc",
    srcs_version = "PY2AND3",
    deps = ["@protobuf//:protobuf_python"],
)