• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Initialization of dependencies of C++ Tink."""
2
3load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
4
5def tink_cc_deps_init():
6    """Initializes dependencies of C++ Tink."""
7
8    # Initialize Protobuf dependencies.
9    protobuf_deps()
10