workspace( name = "com_google_googleapis", ) load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") ############################################################################## # Common ############################################################################## load("//:repository_rules.bzl", "switched_rules_by_language") switched_rules_by_language( name = "com_google_googleapis_imports", cc = True, csharp = True, gapic = True, go = True, grpc = True, java = True, nodejs = True, php = True, python = True, ruby = True, ) _bazel_skylib_version = "1.4.0" _bazel_skylib_sha256 = "f24ab666394232f834f74d19e2ff142b0af17466ea0c69a3f4c276ee75f6efce" http_archive( name = "bazel_skylib", sha256 = _bazel_skylib_sha256, urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/{0}/bazel-skylib-{0}.tar.gz".format(_bazel_skylib_version)], ) # Protobuf depends on very old version of rules_jvm_external. # Importing older version of rules_jvm_external first (this is one of the things that protobuf_deps() call # below will do) breaks the Java client library generation process, so importing the proper version explicitly before calling protobuf_deps(). RULES_JVM_EXTERNAL_TAG = "4.5" RULES_JVM_EXTERNAL_SHA = "b17d7388feb9bfa7f2fa09031b32707df529f26c91ab9e5d909eb1676badd9a6" http_archive( name = "rules_jvm_external", sha256 = RULES_JVM_EXTERNAL_SHA, strip_prefix = "rules_jvm_external-%s" % RULES_JVM_EXTERNAL_TAG, url = "https://github.com/bazelbuild/rules_jvm_external/archive/%s.zip" % RULES_JVM_EXTERNAL_TAG, ) 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() # Python rules should go early in the dependencies list, otherwise a wrong # version of the library will be selected as a transitive dependency of gRPC. http_archive( name = "rules_python", strip_prefix = "rules_python-0.9.0", url = "https://github.com/bazelbuild/rules_python/archive/0.9.0.tar.gz", ) http_archive( name = "rules_pkg", sha256 = "8a298e832762eda1830597d64fe7db58178aa84cd5926d76d5b744d6558941c2", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz", "https://github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz", ], ) load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies") rules_pkg_dependencies() # This must be above the download of gRPC (in C++ section) and # rules_gapic_repositories because both depend on rules_go and we need to manage # our version of rules_go explicitly rather than depend on the version those # bring in transitively. _io_bazel_rules_go_version = "0.34.0" http_archive( name = "io_bazel_rules_go", sha256 = "16e9fca53ed6bd4ff4ad76facc9b7b651a89db1689a2877d6fd7b82aa824e366", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v{0}/rules_go-v{0}.zip".format(_io_bazel_rules_go_version), "https://github.com/bazelbuild/rules_go/releases/download/v{0}/rules_go-v{0}.zip".format(_io_bazel_rules_go_version), ], ) ############################################################################## # C++ ############################################################################## # C++ must go before everything else, since the key dependencies (protobuf and gRPC) # are C++ repositories and they have the highest chance to have the correct versions of the # transitive dependencies (for those dependencies which are shared by many other repositories # imported in this workspace). # # This comes before Protobuf's section, meaning we prioritize gRPC's dependencies # (including upb and absl) over Protobuf's. Because the gRPC team prioritizes their # own dependencies when they test gRPC and Protobuf compatibility, gRPC's dependencies have # better chance to make it work. # # Note, even though protobuf and gRPC are mostly written in C++, they are used to generate stuff # for most of the other languages as well, so they can be considered as the core cross-language # dependencies. # Import boringssl explicitly to override what gRPC imports as its dependency. # Boringssl build fails on gcc12 without this fix: # https://github.com/google/boringssl/commit/8462a367bb57e9524c3d8eca9c62733c63a63cf4, # which is present only in the newest version of boringssl, not the one imported # by gRPC. Remove this import once gRPC depends on a newer version. http_archive( name = "boringssl", sha256 = "b460f8673f3393e58ce506e9cdde7f2c3b2575b075f214cb819fb57d809f052b", strip_prefix = "boringssl-bb41bc007079982da419c0ec3186e510cbcf09d0", urls = [ "https://github.com/google/boringssl/archive/bb41bc007079982da419c0ec3186e510cbcf09d0.zip", ], ) _grpc_version = "1.55.1" _grpc_sha256 = "17c0685da231917a7b3be2671a7b13b550a85fdda5e475313264c5f51c4da3f8" http_archive( name = "com_github_grpc_grpc", sha256 = _grpc_sha256, strip_prefix = "grpc-%s" % _grpc_version, urls = ["https://github.com/grpc/grpc/archive/v%s.zip" % _grpc_version], ) # Explicitly declaring Protobuf version, while Protobuf dependency is already # instantiated in grpc_deps(). http_archive( name = "com_google_protobuf", sha256 = "0b0395d34e000f1229679e10d984ed7913078f3dd7f26cf0476467f5e65716f4", strip_prefix = "protobuf-23.2", urls = ["https://github.com/protocolbuffers/protobuf/archive/v23.2.tar.gz"], ) load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps") grpc_deps() load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps", "PROTOBUF_MAVEN_ARTIFACTS") # This is actually already done within grpc_deps but calling this for Bazel convention. protobuf_deps() # gRPC enforces a specific version of Go toolchain which conflicts with our build. # All the relevant parts of grpc_extra_deps() are imported in this WORKSPACE file # explicitly, that is why we do not call grpc_extra_deps() here and call # apple_rules_dependencies and apple_support_dependencies macros explicitly. load("@build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies") apple_rules_dependencies() load("@build_bazel_apple_support//lib:repositories.bzl", "apple_support_dependencies") apple_support_dependencies() # End of C++ section http_archive( name = "rules_proto", sha256 = "602e7161d9195e50246177e7c55b2f39950a9cf7366f74ed5f22fd45750cd208", strip_prefix = "rules_proto-97d8af4dc474595af3900dd85cb3a29ad28cc313", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc313.tar.gz", "https://github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc313.tar.gz", ], ) load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains") rules_proto_dependencies() rules_proto_toolchains() ############################################################################## # Go ############################################################################## # rules_gapic also depends on rules_go, so it must come after our own dependency on rules_go. # It must also come before gapic-generator-go so as to ensure that it does not bring in an old # version of rules_gapic. _rules_gapic_version = "0.28.0" _rules_gapic_sha256 = "921aebfb7f26c110fcdafeb6b74b1eb2d114a6d52e1bc11d6c1c011cf1da2017" http_archive( name = "rules_gapic", sha256 = _rules_gapic_sha256, strip_prefix = "rules_gapic-%s" % _rules_gapic_version, urls = ["https://github.com/googleapis/rules_gapic/archive/v%s.tar.gz" % _rules_gapic_version], ) # Gazelle dependency version should match gazelle dependency expected by gRPC _bazel_gazelle_version = "0.24.0" http_archive( name = "bazel_gazelle", sha256 = "de69a09dc70417580aabf20a28619bb3ef60d038470c7cf8442fafcf627c21cb", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v{0}/bazel-gazelle-v{0}.tar.gz".format(_bazel_gazelle_version), "https://github.com/bazelbuild/bazel-gazelle/releases/download/v{0}/bazel-gazelle-v{0}.tar.gz".format(_bazel_gazelle_version), ], ) # This overrides the package name @go_googleapis to point at this package, # @com_google_googleapis, which has the latest versions of all protos and is the # source of truth for those protos. This prevents rules_go from loading its own, # conflicting copy of googleapis under this package name, which would create # package collisions during compilation. local_repository( name = "go_googleapis", path = ".", ) _gapic_generator_go_version = "0.36.0" http_archive( name = "com_googleapis_gapic_generator_go", strip_prefix = "gapic-generator-go-%s" % _gapic_generator_go_version, urls = ["https://github.com/googleapis/gapic-generator-go/archive/v%s.tar.gz" % _gapic_generator_go_version], ) load("@com_googleapis_gapic_generator_go//:repositories.bzl", "com_googleapis_gapic_generator_go_repositories") com_googleapis_gapic_generator_go_repositories() # rules_go and gazelle dependencies are loaded after gapic-generator-go # dependencies to ensure that they do not override any of the go_repository # dependencies of gapic-generator-go. load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") go_register_toolchains(version = "1.18.6") go_rules_dependencies() load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies") gazelle_dependencies() load("@rules_gapic//:repositories.bzl", "rules_gapic_repositories") rules_gapic_repositories() ############################################################################## # Java ############################################################################## # Starting in protobuf 3.19, protobuf project started to provide # PROTOBUF_MAVEN_ARTIFACTS variable so that Bazel users can resolve their # dependencies through maven_install. # https://github.com/protocolbuffers/protobuf/issues/9132 load("@rules_jvm_external//:defs.bzl", "maven_install") maven_install( artifacts = PROTOBUF_MAVEN_ARTIFACTS, generate_compat_repositories = True, repositories = [ "https://repo.maven.apache.org/maven2/", ], ) _gapic_generator_java_version = "2.21.0" maven_install( artifacts = [ "com.google.api:gapic-generator-java:" + _gapic_generator_java_version, ], #Update this False for local development fail_on_missing_checksum = True, repositories = [ "m2Local", "https://repo.maven.apache.org/maven2/", ] ) http_archive( name = "gapic_generator_java", strip_prefix = "sdk-platform-java-%s" % _gapic_generator_java_version, urls = ["https://github.com/googleapis/sdk-platform-java/archive/v%s.zip" % _gapic_generator_java_version], ) # gax-java is part of sdk-platform-java repository http_archive( name = "com_google_api_gax_java", strip_prefix = "sdk-platform-java-%s/gax-java" % _gapic_generator_java_version, urls = ["https://github.com/googleapis/sdk-platform-java/archive/v%s.zip" % _gapic_generator_java_version], ) load("@com_google_api_gax_java//:repository_rules.bzl", "com_google_api_gax_java_properties") com_google_api_gax_java_properties( name = "com_google_api_gax_java_properties", file = "@com_google_api_gax_java//:dependencies.properties", ) load("@com_google_api_gax_java//:repositories.bzl", "com_google_api_gax_java_repositories") com_google_api_gax_java_repositories() load("@io_grpc_grpc_java//:repositories.bzl", "grpc_java_repositories") grpc_java_repositories() ############################################################################## # Python ############################################################################## load("@rules_gapic//python:py_gapic_repositories.bzl", "py_gapic_repositories") py_gapic_repositories() load("@rules_python//python:pip.bzl", "pip_install") pip_install() _gapic_generator_python_version = "1.9.1" http_archive( name = "gapic_generator_python", strip_prefix = "gapic-generator-python-%s" % _gapic_generator_python_version, urls = ["https://github.com/googleapis/gapic-generator-python/archive/v%s.zip" % _gapic_generator_python_version], ) load( "@gapic_generator_python//:repositories.bzl", "gapic_generator_python", "gapic_generator_register_toolchains", ) gapic_generator_python() gapic_generator_register_toolchains() ############################################################################## # TypeScript ############################################################################## _gapic_generator_typescript_version = "3.0.3" _gapic_generator_typescript_sha256 = "f79b4517873f69ea09621b511aade2e039bcfc37f19342a135bf45eaa6f60595" ### TypeScript generator http_archive( name = "gapic_generator_typescript", sha256 = _gapic_generator_typescript_sha256, strip_prefix = "gapic-generator-typescript-%s" % _gapic_generator_typescript_version, urls = ["https://github.com/googleapis/gapic-generator-typescript/archive/v%s.tar.gz" % _gapic_generator_typescript_version], ) load("@gapic_generator_typescript//:repositories.bzl", "gapic_generator_typescript_repositories", "NODE_VERSION") gapic_generator_typescript_repositories() load("@aspect_rules_js//js:repositories.bzl", "rules_js_dependencies") rules_js_dependencies() load("@aspect_rules_ts//ts:repositories.bzl", "rules_ts_dependencies") rules_ts_dependencies( ts_version_from = "@gapic_generator_typescript//:package.json", ) load("@rules_nodejs//nodejs:repositories.bzl", "nodejs_register_toolchains") nodejs_register_toolchains( name = "nodejs", node_version = NODE_VERSION, ) load("@aspect_rules_js//npm:npm_import.bzl", "npm_translate_lock", "pnpm_repository") npm_translate_lock( name = "npm", pnpm_lock = "@gapic_generator_typescript//:pnpm-lock.yaml", data = ["@gapic_generator_typescript//:package.json"], ) load("@npm//:repositories.bzl", "npm_repositories") npm_repositories() pnpm_repository(name = "pnpm") ############################################################################## # PHP ############################################################################## # PHP micro-generator _gapic_generator_php_version = "1.7.6" http_archive( name = "gapic_generator_php", strip_prefix = "gapic-generator-php-%s" % _gapic_generator_php_version, urls = ["https://github.com/googleapis/gapic-generator-php/archive/v%s.zip" % _gapic_generator_php_version], ) load("@rules_gapic//php:php_gapic_repositories.bzl", "php_gapic_repositories") php_gapic_repositories() load("@gapic_generator_php//:repositories.bzl", "gapic_generator_php_repositories") gapic_generator_php_repositories() ############################################################################## # C# ############################################################################## # Required to access the C#-specific common resources config. _gax_dotnet_version = "Google.Api.Gax-3.3.0" _gax_dotnet_sha256 = "c4d31345a226987e8551cb81afa685c9322d3f806077d9f02011676cf00c15d9" http_archive( name = "gax_dotnet", build_file_content = "exports_files([\"Google.Api.Gax/ResourceNames/CommonResourcesConfig.json\"])", sha256 = _gax_dotnet_sha256, strip_prefix = "gax-dotnet-%s" % _gax_dotnet_version, urls = ["https://github.com/googleapis/gax-dotnet/archive/refs/tags/%s.tar.gz" % _gax_dotnet_version], ) _gapic_generator_csharp_version = "1.4.17" _gapic_generator_csharp_sha256 = "8a3b1deeb1a3679cb1f82d121322249c281b372d2eb52ba53586cc054ab5eee0" http_archive( name = "gapic_generator_csharp", sha256 = _gapic_generator_csharp_sha256, strip_prefix = "gapic-generator-csharp-%s" % _gapic_generator_csharp_version, urls = ["https://github.com/googleapis/gapic-generator-csharp/archive/refs/tags/v%s.tar.gz" % _gapic_generator_csharp_version], ) load("@gapic_generator_csharp//:repositories.bzl", "gapic_generator_csharp_repositories") gapic_generator_csharp_repositories() ############################################################################## # Ruby ############################################################################## _gapic_generator_ruby_version = "v0.23.4" _gapic_generator_ruby_sha256 = "185c03f011849f8e1284c7a2b4c41f57ae9fbee3013418607c5cf09c1c5cdbc3" http_archive( name = "gapic_generator_ruby", sha256 = _gapic_generator_ruby_sha256, strip_prefix = "gapic-generator-ruby-gapic-generator-%s" % _gapic_generator_ruby_version, urls = ["https://github.com/googleapis/gapic-generator-ruby/archive/refs/tags/gapic-generator/%s.tar.gz" % _gapic_generator_ruby_version], ) load("@gapic_generator_ruby//rules_ruby_gapic:repositories.bzl", "gapic_generator_ruby_repositories") gapic_generator_ruby_repositories() ############################################################################## # Discovery ############################################################################## _disco_to_proto3_converter_version = "c47a76dd3d591478dd1a902413636c06da1153b8" http_archive( name = "com_google_disco_to_proto3_converter", strip_prefix = "disco-to-proto3-converter-%s" % _disco_to_proto3_converter_version, urls = ["https://github.com/googleapis/disco-to-proto3-converter/archive/%s.zip" % _disco_to_proto3_converter_version], ) load("@com_google_disco_to_proto3_converter//:repository_rules.bzl", "com_google_disco_to_proto3_converter_properties") com_google_disco_to_proto3_converter_properties( name = "com_google_disco_to_proto3_converter_properties", file = "@com_google_disco_to_proto3_converter//:pom.xml", ) load("@com_google_disco_to_proto3_converter//:repositories.bzl", "com_google_disco_to_proto3_converter_repositories") com_google_disco_to_proto3_converter_repositories()