forked from grpc/grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move extra dependencies out of WORKSPACE to its own macro.
This could be useful for projects that use gRPC as an external repository. This could not be done within the same grpc_deps.bzl due to the problem discussed in - bazelbuild/bazel#1550 - bazelbuild/bazel#1943
- Loading branch information
1 parent
c1d1765
commit bf0c4b9
Showing
3 changed files
with
53 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
"""Loads the dependencies necessary for the external repositories defined in grpc_deps.bzl.""" | ||
|
||
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") | ||
load("@upb//bazel:workspace_deps.bzl", "upb_deps") | ||
load("@envoy_api//bazel:repositories.bzl", "api_dependencies") | ||
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") | ||
load("@build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies") | ||
load("@build_bazel_apple_support//lib:repositories.bzl", "apple_support_dependencies") | ||
|
||
def grpc_extra_deps(): | ||
"""Loads the extra dependencies. | ||
These are necessary for using the external repositories defined in | ||
grpc_deps.bzl. Projects that depend on gRPC as an external repository need | ||
to call both grpc_deps and grpc_extra_deps, if they have not already loaded | ||
the extra dependencies. For example, they can do the following in their | ||
WORKSPACE | ||
``` | ||
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps", "grpc_test_only_deps") | ||
grpc_deps() | ||
grpc_test_only_deps() | ||
load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps") | ||
grpc_extra_deps() | ||
``` | ||
""" | ||
protobuf_deps() | ||
|
||
upb_deps() | ||
|
||
api_dependencies() | ||
|
||
go_rules_dependencies() | ||
go_register_toolchains() | ||
|
||
apple_rules_dependencies() | ||
|
||
apple_support_dependencies() |