https://github.com/google/tink
Raw File
Tip revision: 27b061bb9ed1af1a6f538410bff443290e427e66 authored by ckl on 10 August 2022, 00:53:25 UTC
Bump version to 1.7.0.
Tip revision: 27b061b
tink_cc_deps_init.bzl
"""Initialization of dependencies of C++ Tink."""

load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")

def tink_cc_deps_init():
    """Initializes dependencies of C++ Tink."""

    # Initialize Protobuf dependencies.
    protobuf_deps()
back to top