aboutsummaryrefslogtreecommitdiff
path: root/cc/BUILD.bazel
diff options
context:
space:
mode:
authorcinlin <cinlin@google.com>2023-03-12 03:22:01 -0700
committerCopybara-Service <copybara-worker@google.com>2023-03-12 03:23:17 -0700
commit4896ce26eccdfcc900727f1603a6f6734ca1e8a3 (patch)
tree8ef78dfe087643b8e35c9c5d93c1a283fbfea326 /cc/BUILD.bazel
parent77ad9a7cf5217666be7aca94dfe3c5f41e9256ac (diff)
downloadtink-4896ce26eccdfcc900727f1603a6f6734ca1e8a3.tar.gz
Implement public and internal Configuration classes. #tinkApiChange
PiperOrigin-RevId: 515993746
Diffstat (limited to 'cc/BUILD.bazel')
-rw-r--r--cc/BUILD.bazel7
1 files changed, 7 insertions, 0 deletions
diff --git a/cc/BUILD.bazel b/cc/BUILD.bazel
index cf443d0fe..f847f4a96 100644
--- a/cc/BUILD.bazel
+++ b/cc/BUILD.bazel
@@ -1161,3 +1161,10 @@ cc_test(
"@com_google_googletest//:gtest_main",
],
)
+
+cc_library(
+ name = "configuration",
+ hdrs = ["configuration.h"],
+ include_prefix = "tink",
+ deps = ["//internal:registry_impl"],
+)