Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
f74eaa69
Commit
f74eaa69
authored
7 years ago
by
Vijay Pai
Browse files
Options
Downloads
Patches
Plain Diff
Fix up protobuf submodule name to match bazel expectation
parent
a935ae15
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
bazel/BUILD
+2
-2
2 additions, 2 deletions
bazel/BUILD
bazel/cc_grpc_library.bzl
+1
-1
1 addition, 1 deletion
bazel/cc_grpc_library.bzl
bazel/generate_cc.bzl
+3
-3
3 additions, 3 deletions
bazel/generate_cc.bzl
tools/grpcz/BUILD
+7
-6
7 additions, 6 deletions
tools/grpcz/BUILD
with
13 additions
and
12 deletions
bazel/BUILD
+
2
−
2
View file @
f74eaa69
...
...
@@ -35,12 +35,12 @@ load(":cc_grpc_library.bzl", "cc_grpc_library")
proto_library
(
name
=
"
well_known_protos_list
"
,
srcs
=
[
"
@
submodu
le_protobuf//:well_known_protos
"
],
srcs
=
[
"
@
com_goog
le_protobuf//:well_known_protos
"
],
)
cc_grpc_library
(
name
=
"
well_known_protos
"
,
srcs
=
"
well_known_protos_list
"
,
deps
=
[],
proto_only
=
True
,
deps
=
[],
)
This diff is collapsed.
Click to expand it.
bazel/cc_grpc_library.bzl
+
1
−
1
View file @
f74eaa69
...
...
@@ -14,7 +14,7 @@ def cc_grpc_library(name, srcs, deps, proto_only, well_known_protos, use_externa
the compiled code of any message that the services depend on.
well_known_protos: The target from protobuf library that exports well
known protos. Currently it will only work if the value is
"
@
submodu
le_protobuf//:well_known_protos
"
"
@
com_goog
le_protobuf//:well_known_protos
"
use_external: When True the grpc deps are prefixed with //external. This
allows grpc to be used as a dependency in other bazel projects.
**kwargs: rest of arguments, e.g., compatible_with and visibility.
...
...
This diff is collapsed.
Click to expand it.
bazel/generate_cc.bzl
+
3
−
3
View file @
f74eaa69
...
...
@@ -35,10 +35,10 @@ def generate_cc_impl(ctx):
well_known_proto_files
=
[]
if
ctx
.
attr
.
well_known_protos
:
f
=
ctx
.
attr
.
well_known_protos
.
files
.
to_list
()[
0
].
dirname
if
f
!=
"
external/
submodu
le_protobuf/src/google/protobuf
"
:
print
(
"
Error: Only @
submodu
le_protobuf//:well_known_protos is supported
"
)
if
f
!=
"
external/
com_goog
le_protobuf/src/google/protobuf
"
:
print
(
"
Error: Only @
com_goog
le_protobuf//:well_known_protos is supported
"
)
else
:
# f points to "external/
submodu
le_protobuf/src/google/protobuf"
# f points to "external/
com_goog
le_protobuf/src/google/protobuf"
# add -I argument to protoc so it knows where to look for the proto files.
arguments
+=
[
"
-I{0}
"
.
format
(
f
+
"
/../..
"
)]
well_known_proto_files
=
[
f
for
f
in
ctx
.
attr
.
well_known_protos
.
files
]
...
...
This diff is collapsed.
Click to expand it.
tools/grpcz/BUILD
+
7
−
6
View file @
f74eaa69
...
...
@@ -33,30 +33,31 @@ package(default_visibility = ["//visibility:public"])
load
(
"
//:bazel/grpc_build_system.bzl
"
,
"
grpc_proto_library
"
)
grpc_proto_library
(
grpc_proto_library
(
name
=
"
monitoring_proto
"
,
srcs
=
[
"
monitoring.proto
"
,
],
well_known_protos
=
"
@com_google_protobuf//:well_known_protos
"
,
deps
=
[
"
:census_proto
"
,
],
well_known_protos
=
"
@submodule_protobuf//:well_known_protos
"
,
)
grpc_proto_library
(
grpc_proto_library
(
name
=
"
census_proto
"
,
srcs
=
[
"
census.proto
"
,
],
well_known_protos
=
"
@
submodu
le_protobuf//:well_known_protos
"
,
well_known_protos
=
"
@
com_goog
le_protobuf//:well_known_protos
"
,
)
cc_binary
(
name
=
"
grpcz_client
"
,
srcs
=
[
"
grpcz_client.cc
"
,
],
srcs
=
[
"
grpcz_client.cc
"
],
deps
=
[
"
//external:gflags
"
,
"
monitoring_proto
"
,
"
//external:gflags
"
,
"
@mongoose_repo//:mongoose_lib
"
,
],
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment