aboutsummaryrefslogtreecommitdiff
path: root/cc/.bazelignore
AgeCommit message (Collapse)Author
2022-08-02Move examples for Tink C++ to the project's folderambrosin
PiperOrigin-RevId: 464756776
2022-04-11Move Tink C++ GCP KMS integration to a separate WORKSPACEambrosin
In summary: * Create a new WORKSPACE in tink/cc/integration/gcpkms. * Move dependencies from tink_cc to tink_cc_gcpkms; tink_cc no longer depends on gRPC, which is now setup and initialised by tink_cc_gcpkms in tink_cc_gcpkms_deps.bzl and tink_cc_gcpkms_deps_init.bzl. * Add/Update the explicit repository dependency throughout. PiperOrigin-RevId: 440866102
2022-04-11Move C++ AWS-KMS integration to a separate WORKSPACE.ambrosin
This change adds a WORKSPACE file in cc/integration/awskms, maintaining the same folder structure as before. In summary: * Add new WORKSPACE in cc/integration/awskms. * Add `.bazelignore` to instruct Bazel to ignore the subfolder `integration/awskms`. * Remove dependency on AWS-KMS SDK and Curl+Zlib from `tink_cc`, move such dependencies to the new workspace; move corresponding Bazel build files in cc/third_party to `cc/integration/awskms/third_party`. * Add/Update the explicit repository dependency throughout. PiperOrigin-RevId: 440806382