xref: /aosp_15_r20/external/tink/cc/MODULE.bazel (revision e7b1675dde1b92d52ec075b0a92829627f2c52a5)
1# Copyright 2023 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15"""Tink C++ Bazel Module definition."""
16module(
17    name = "tink_cc",
18    version = "2.0.0",
19)
20
21bazel_dep(name = "rules_cc", version = "0.0.5")
22bazel_dep(name = "rules_proto", version = "5.3.0-21.7")
23bazel_dep(name = "platforms", version = "0.0.6")
24bazel_dep(name = "bazel_skylib", version = "1.3.0")
25bazel_dep(name = "googletest", version = "1.12.1", repo_name = "com_google_googletest")
26bazel_dep(name = "protobuf", version = "21.7", repo_name = "com_google_protobuf")
27bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014")
28bazel_dep(name = "rapidjson", version = "1.1.0")
29bazel_dep(name = "abseil-cpp", version = "20230125.1", repo_name="com_google_absl")
30
31wycheproof_extension = use_extension("//:extensions.bzl", "wycheproof_extension")
32use_repo(wycheproof_extension, "wycheproof")
33