| # Copyright 2019 Google Inc. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| # Copyright 2019 Google Inc. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| """WORKSPACE file for Private Join and Compute.""" |
| |
| load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| |
| http_archive( |
| name = "com_github_glog_glog", |
| sha256 = "f28359aeba12f30d73d9e4711ef356dc842886968112162bc73002645139c39c", |
| strip_prefix = "glog-0.4.0", |
| urls = ["https://github.com/google/glog/archive/v0.4.0.tar.gz"], |
| ) |
| |
| # gflags |
| # Needed for glog |
| http_archive( |
| name = "com_github_gflags_gflags", |
| sha256 = "34af2f15cf7367513b352bdcd2493ab14ce43692d2dcd9dfc499492966c64dcf", |
| strip_prefix = "gflags-2.2.2", |
| urls = [ |
| "https://mirror.bazel.build/github.com/gflags/gflags/archive/v2.2.2.tar.gz", |
| "https://github.com/gflags/gflags/archive/v2.2.2.tar.gz", |
| ], |
| ) |
| |
| # gRPC |
| http_archive( |
| name = "com_github_grpc_grpc", |
| sha256 = "c2ab8a42a0d673c1acb596d276055adcc074c1116e427f118415da3e79e52969", |
| strip_prefix = "grpc-1.27.3", |
| urls = [ |
| "https://github.com/grpc/grpc/archive/v1.27.3.tar.gz", |
| ], |
| ) |
| |
| load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps") |
| |
| # Includes boringssl, com_google_absl, and other dependencies. |
| grpc_deps() |
| |
| load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps") |
| |
| # Loads transitive dependencies of GRPC. |
| grpc_extra_deps() |