Revision 27b061bb9ed1af1a6f538410bff443290e427e66 authored by ckl on 10 August 2022, 00:53:25 UTC, committed by Copybara-Service on 10 August 2022, 00:54:36 UTC
PiperOrigin-RevId: 466522403
1 parent d1ea07d
Raw File
tink_base_deps_init.bzl
"""
Initalization of dependencies of Tink base.
"""

load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")

def tink_base_deps_init():
    """ Initializes dependencies of Tink base.

    """

    # Actual base inits.
    protobuf_deps()

    # Creates a default toolchain config for RBE.
    # Use this as is if you are using the rbe_ubuntu16_04 container,
    # otherwise refer to RBE docs.
    rbe_autoconfig(name = "rbe_default")
back to top