| workspace(name = "protodatastore-cpp") |
| |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| |
| http_archive( |
| name = "com_google_absl", |
| strip_prefix = "abseil-cpp-master", |
| urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"], |
| ) |
| |
| http_archive( |
| name = "googletest", |
| strip_prefix = "googletest-master", |
| urls = ["https://github.com/google/googletest/archive/master.zip"], |
| ) |
| |
| http_archive( |
| name = "com_google_protobuf", |
| strip_prefix = "protobuf-master", |
| urls = ["https://github.com/protocolbuffers/protobuf/archive/master.zip"], |
| ) |
| |
| http_archive( |
| name = "com_google_protobuf_cc", |
| strip_prefix = "protobuf-master", |
| urls = ["https://github.com/protocolbuffers/protobuf/archive/master.zip"], |
| ) |
| |
| http_archive( |
| name = "bazel_skylib", |
| sha256 = "ea5dc9a1d51b861d27608ad3bd6c177bc88d54e946cb883e9163e53c607a9b4c", |
| strip_prefix = "bazel-skylib-2b38b2f8bd4b8603d610cfc651fcbb299498147f", |
| urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2b38b2f8bd4b8603d610cfc651fcbb299498147f.tar.gz"], |
| ) |
| |
| http_archive( |
| name = "rules_python", |
| sha256 = "e5470e92a18aa51830db99a4d9c492cc613761d5bdb7131c04bd92b9834380f6", |
| strip_prefix = "rules_python-4b84ad270387a7c439ebdccfd530e2339601ef27", |
| urls = ["https://github.com/bazelbuild/rules_python/archive/4b84ad270387a7c439ebdccfd530e2339601ef27.tar.gz"], |
| ) |
| |
| http_archive( |
| name = "zlib", |
| build_file = "@com_google_protobuf//:third_party/zlib.BUILD", |
| sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1", |
| strip_prefix = "zlib-1.2.11", |
| urls = ["https://zlib.net/zlib-1.2.11.tar.gz"], |
| ) |