mirror of https://github.com/grpc/grpc-java.git
122 lines
5.1 KiB
Python
122 lines
5.1 KiB
Python
"""External dependencies for grpc-java."""
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
# For use with maven_install's artifacts.
|
|
# maven_install(
|
|
# ...
|
|
# artifacts = [
|
|
# # Your own deps
|
|
# ] + IO_GRPC_GRPC_JAVA_ARTIFACTS,
|
|
# )
|
|
IO_GRPC_GRPC_JAVA_ARTIFACTS = [
|
|
"com.google.android:annotations:4.1.1.4",
|
|
"com.google.api.grpc:proto-google-common-protos:2.0.1",
|
|
"com.google.auth:google-auth-library-credentials:0.22.0",
|
|
"com.google.auth:google-auth-library-oauth2-http:0.22.0",
|
|
"com.google.code.findbugs:jsr305:3.0.2",
|
|
"com.google.code.gson:gson:jar:2.8.9",
|
|
"com.google.auto.value:auto-value:1.7.4",
|
|
"com.google.auto.value:auto-value-annotations:1.7.4",
|
|
"com.google.errorprone:error_prone_annotations:2.9.0",
|
|
"com.google.guava:failureaccess:1.0.1",
|
|
"com.google.guava:guava:30.1.1-android",
|
|
"com.google.j2objc:j2objc-annotations:1.3",
|
|
"com.google.truth:truth:1.0.1",
|
|
"com.squareup.okhttp:okhttp:2.7.4",
|
|
"com.squareup.okio:okio:1.17.5",
|
|
"io.netty:netty-buffer:4.1.72.Final",
|
|
"io.netty:netty-codec-http2:4.1.72.Final",
|
|
"io.netty:netty-codec-http:4.1.72.Final",
|
|
"io.netty:netty-codec-socks:4.1.72.Final",
|
|
"io.netty:netty-codec:4.1.72.Final",
|
|
"io.netty:netty-common:4.1.72.Final",
|
|
"io.netty:netty-handler-proxy:4.1.72.Final",
|
|
"io.netty:netty-handler:4.1.72.Final",
|
|
"io.netty:netty-resolver:4.1.72.Final",
|
|
"io.netty:netty-tcnative-boringssl-static:2.0.46.Final",
|
|
"io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.72.Final",
|
|
"io.netty:netty-transport:4.1.72.Final",
|
|
"io.opencensus:opencensus-api:0.24.0",
|
|
"io.opencensus:opencensus-contrib-grpc-metrics:0.24.0",
|
|
"io.perfmark:perfmark-api:0.25.0",
|
|
"junit:junit:4.12",
|
|
"org.apache.tomcat:annotations-api:6.0.53",
|
|
"org.codehaus.mojo:animal-sniffer-annotations:1.19",
|
|
]
|
|
|
|
# For use with maven_install's override_targets.
|
|
# maven_install(
|
|
# ...
|
|
# override_targets = IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS,
|
|
# )
|
|
#
|
|
# If you have your own overrides as well, you can use:
|
|
# override_targets = dict(
|
|
# IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS,
|
|
# "your.target:artifact": "@//third_party/artifact",
|
|
# )
|
|
#
|
|
# To combine OVERRIDE_TARGETS from multiple libraries:
|
|
# override_targets = dict(
|
|
# IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS.items() +
|
|
# OTHER_OVERRIDE_TARGETS.items(),
|
|
# "your.target:artifact": "@//third_party/artifact",
|
|
# )
|
|
IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS = {
|
|
"com.google.protobuf:protobuf-java": "@com_google_protobuf//:protobuf_java",
|
|
"com.google.protobuf:protobuf-java-util": "@com_google_protobuf//:protobuf_java_util",
|
|
"com.google.protobuf:protobuf-javalite": "@com_google_protobuf_javalite//:protobuf_java_lite",
|
|
"io.grpc:grpc-alts": "@io_grpc_grpc_java//alts",
|
|
"io.grpc:grpc-api": "@io_grpc_grpc_java//api",
|
|
"io.grpc:grpc-auth": "@io_grpc_grpc_java//auth",
|
|
"io.grpc:grpc-census": "@io_grpc_grpc_java//census",
|
|
"io.grpc:grpc-context": "@io_grpc_grpc_java//context",
|
|
"io.grpc:grpc-core": "@io_grpc_grpc_java//core:core_maven",
|
|
"io.grpc:grpc-grpclb": "@io_grpc_grpc_java//grpclb",
|
|
"io.grpc:grpc-netty": "@io_grpc_grpc_java//netty",
|
|
"io.grpc:grpc-netty-shaded": "@io_grpc_grpc_java//netty:shaded_maven",
|
|
"io.grpc:grpc-okhttp": "@io_grpc_grpc_java//okhttp",
|
|
"io.grpc:grpc-protobuf": "@io_grpc_grpc_java//protobuf",
|
|
"io.grpc:grpc-protobuf-lite": "@io_grpc_grpc_java//protobuf-lite",
|
|
"io.grpc:grpc-stub": "@io_grpc_grpc_java//stub",
|
|
"io.grpc:grpc-testing": "@io_grpc_grpc_java//testing",
|
|
}
|
|
|
|
def grpc_java_repositories():
|
|
"""Imports dependencies for grpc-java."""
|
|
if not native.existing_rule("com_google_protobuf"):
|
|
com_google_protobuf()
|
|
if not native.existing_rule("com_google_protobuf_javalite"):
|
|
com_google_protobuf_javalite()
|
|
if not native.existing_rule("io_grpc_grpc_proto"):
|
|
io_grpc_grpc_proto()
|
|
|
|
def com_google_protobuf():
|
|
# proto_library rules implicitly depend on @com_google_protobuf//:protoc,
|
|
# which is the proto-compiler.
|
|
# This statement defines the @com_google_protobuf repo.
|
|
http_archive(
|
|
name = "com_google_protobuf",
|
|
sha256 = "9ceef0daf7e8be16cd99ac759271eb08021b53b1c7b6edd399953a76390234cd",
|
|
strip_prefix = "protobuf-3.19.2",
|
|
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.19.2.zip"],
|
|
)
|
|
|
|
def com_google_protobuf_javalite():
|
|
# java_lite_proto_library rules implicitly depend on @com_google_protobuf_javalite
|
|
http_archive(
|
|
name = "com_google_protobuf_javalite",
|
|
sha256 = "9ceef0daf7e8be16cd99ac759271eb08021b53b1c7b6edd399953a76390234cd",
|
|
strip_prefix = "protobuf-3.19.2",
|
|
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.19.2.zip"],
|
|
)
|
|
|
|
def io_grpc_grpc_proto():
|
|
http_archive(
|
|
name = "io_grpc_grpc_proto",
|
|
sha256 = "464e97a24d7d784d9c94c25fa537ba24127af5aae3edd381007b5b98705a0518",
|
|
strip_prefix = "grpc-proto-08911e9d585cbda3a55eb1dcc4b99c89aebccff8",
|
|
urls = ["https://github.com/grpc/grpc-proto/archive/08911e9d585cbda3a55eb1dcc4b99c89aebccff8.zip"],
|
|
)
|