• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package(
2    default_visibility = ["//visibility:public"],
3)
4
5licenses(["notice"])  # MIT
6
7load("@com_google_protobuf//:protobuf.bzl", "py_proto_library")
8
9exports_files(["pprof/LICENSE"])
10
11py_proto_library(
12    name = "pprof_proto_py",
13    srcs = ["proto/profile.proto"],
14    default_runtime = "@com_google_protobuf//:protobuf_python",
15    protoc = "@com_google_protobuf//:protoc",
16    srcs_version = "PY3",
17    deps = ["@com_google_protobuf//:protobuf_python"],
18)
19