Revision a7b23053cd421ce94900fc6730890ce288f01b51 authored by ckl on 12 July 2021, 19:07:50 UTC, committed by Charles Lee on 12 July 2021, 20:28:17 UTC
PiperOrigin-RevId: 384286927
(cherry picked from commit 99d379628add82a23b17788fa9d3381478f9bd1b)
1 parent 983c21e
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")

# temporary: loads from other languages
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies")

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

    """

    # ----- Go
    go_rules_dependencies()

    # --------
    # 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