summaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorEtienne Perot <eperot@google.com>2021-07-07 12:45:39 -0700
committergVisor bot <gvisor-bot@google.com>2021-07-07 12:48:24 -0700
commitcd558fcb05c30bc08bbb9ba47755c2768fa33316 (patch)
tree55179a9aafee75963293ddd9eecf07f6df2e9d1d /WORKSPACE
parentb63631b46cd9b6b143a9d4a0f03e087b08d5123a (diff)
Sentry: Measure the time it takes to initialize the Sentry.
PiperOrigin-RevId: 383472507
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE11
1 files changed, 10 insertions, 1 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 4af8b4a06..a27f9afeb 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -1254,7 +1254,7 @@ load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")
rules_pkg_dependencies()
# System Call test dependencies.
-# grpc also has a dependency on abseil but as this is before grpc dependency
+# grpc also has a dependency on abseil but as this is before grpc dependency
# declaration, it will take precedence over grpc's one
# Version LTS 20210324.2
http_archive(
@@ -1306,6 +1306,15 @@ http_archive(
],
)
+http_archive(
+ name = "com_google_protobuf",
+ sha256 = "528927e398f4e290001886894dac17c5c6a2e5548f3fb68004cfb01af901b53a",
+ strip_prefix = "protobuf-3.17.3",
+ urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.17.3.zip"],
+)
+load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
+protobuf_deps()
+
# Schemas for testing.
http_file(
name = "buildkite_pipeline_schema",