mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
74 lines
2 KiB
Text
74 lines
2 KiB
Text
workspace(name = "com_google_protobuf_examples")
|
|
|
|
# load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
# This protobuf repository is required for proto_library rule.
|
|
# It provides the protocol compiler binary (i.e., protoc).
|
|
#
|
|
# We declare it as local_repository so we can test changes
|
|
# before they get merged. You'll want to use the following instead:
|
|
#
|
|
# http_archive(
|
|
# name = "com_google_protobuf",
|
|
# sha256 = "c29d8b4b79389463c546f98b15aa4391d4ed7ec459340c47bffe15db63eb9126",
|
|
# strip_prefix = "protobuf-3.21.3",
|
|
# urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.21.3.tar.gz"],
|
|
# )
|
|
|
|
local_repository(
|
|
name = "com_google_protobuf",
|
|
path = "..",
|
|
)
|
|
|
|
local_repository(
|
|
name = "com_google_protobuf-examples-with-hyphen",
|
|
path = "examples_with_hyphen",
|
|
)
|
|
|
|
# Similar to com_google_protobuf but for Java lite. If you are building
|
|
# for Android, the lite version should be preferred because it has a much
|
|
# smaller code size.
|
|
local_repository(
|
|
name = "com_google_protobuf_javalite",
|
|
path = "..",
|
|
)
|
|
|
|
load("@com_google_protobuf//:protobuf_deps.bzl", "PROTOBUF_MAVEN_ARTIFACTS", "protobuf_deps")
|
|
|
|
protobuf_deps()
|
|
|
|
load("@rules_java//java:rules_java_deps.bzl", "rules_java_dependencies")
|
|
|
|
rules_java_dependencies()
|
|
|
|
load("@rules_java//java:repositories.bzl", "rules_java_toolchains")
|
|
|
|
rules_java_toolchains()
|
|
|
|
load("@rules_python//python:repositories.bzl", "py_repositories")
|
|
|
|
py_repositories()
|
|
|
|
load("@rules_jvm_external//:repositories.bzl", "rules_jvm_external_deps")
|
|
|
|
rules_jvm_external_deps()
|
|
|
|
load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup")
|
|
|
|
rules_jvm_external_setup()
|
|
|
|
# For bazel 8.6.0 WORKSPACE on windows
|
|
load("@rules_shell//shell:repositories.bzl", "rules_shell_toolchains")
|
|
|
|
rules_shell_toolchains()
|
|
|
|
load("@rules_jvm_external//:defs.bzl", "maven_install")
|
|
|
|
maven_install(
|
|
name = "maven",
|
|
artifacts = PROTOBUF_MAVEN_ARTIFACTS,
|
|
repositories = [
|
|
"https://repo1.maven.org/maven2",
|
|
"https://repo.maven.apache.org/maven2",
|
|
],
|
|
)
|