aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazel
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2018-12-12 11:40:25 -0800
committerGravatar Alexander Polcyn <apolcyn@google.com>2018-12-12 11:40:25 -0800
commitac6795a57e05523b8fa220bc5cef26abb876aae5 (patch)
treeb010216c31fb7304502a667ccd595eefe96638e6 /bazel
parent311ee1eda13a340f1f33638920965f9f753b9d26 (diff)
Revert "Changes add a script for generating C code and build rule for protobuf"
Diffstat (limited to 'bazel')
-rw-r--r--bazel/grpc_build_system.bzl1
-rw-r--r--bazel/grpc_deps.bzl6
2 files changed, 3 insertions, 4 deletions
diff --git a/bazel/grpc_build_system.bzl b/bazel/grpc_build_system.bzl
index 06b05f7952..65fe5a10aa 100644
--- a/bazel/grpc_build_system.bzl
+++ b/bazel/grpc_build_system.bzl
@@ -99,7 +99,6 @@ def grpc_cc_library(
linkopts = if_not_windows(["-pthread"]),
includes = [
"include",
- "src/core/ext/upb-generated",
],
alwayslink = alwayslink,
data = data,
diff --git a/bazel/grpc_deps.bzl b/bazel/grpc_deps.bzl
index 2738e39abf..3eacd2b047 100644
--- a/bazel/grpc_deps.bzl
+++ b/bazel/grpc_deps.bzl
@@ -12,7 +12,7 @@ def grpc_deps():
)
native.bind(
- name = "upb_lib",
+ name = "upblib",
actual = "@upb//:upb",
)
@@ -195,8 +195,8 @@ def grpc_deps():
if "upb" not in native.existing_rules():
http_archive(
name = "upb",
- strip_prefix = "upb-fb6f7e96895c3a9a8ae2e66516160937e7ac1779",
- url = "https://github.com/google/upb/archive/fb6f7e96895c3a9a8ae2e66516160937e7ac1779.tar.gz",
+ strip_prefix = "upb-9ce4a77f61c134bbed28bfd5be5cd7dc0e80f5e3",
+ url = "https://github.com/google/upb/archive/9ce4a77f61c134bbed28bfd5be5cd7dc0e80f5e3.tar.gz",
)