2020-01-17 21:05:03 +08:00
|
|
|
# Copyright 2019 Google LLC
|
2019-06-27 19:27:37 +08:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2022-01-28 17:38:27 +08:00
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
2019-06-27 19:27:37 +08:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
"""Loads dependencies needed to compile Sandboxed API for 3rd-party consumers."""
|
|
|
|
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
2019-11-25 20:31:37 +08:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
2022-04-25 14:51:06 +08:00
|
|
|
load("//sandboxed_api/bazel:llvm_config.bzl", "llvm_configure")
|
2019-06-27 19:27:37 +08:00
|
|
|
load("//sandboxed_api/bazel:repositories.bzl", "autotools_repository")
|
|
|
|
|
|
|
|
def sapi_deps():
|
|
|
|
"""Loads common dependencies needed to compile Sandboxed API."""
|
|
|
|
|
2022-04-25 14:51:06 +08:00
|
|
|
# Bazel Skylib
|
2019-11-25 20:31:37 +08:00
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "bazel_skylib",
|
2021-04-26 19:59:52 +08:00
|
|
|
urls = [
|
2022-04-05 20:57:57 +08:00
|
|
|
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz",
|
2021-04-26 19:59:52 +08:00
|
|
|
],
|
2022-04-05 20:57:57 +08:00
|
|
|
sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728", # 2022-03-10
|
2019-11-25 20:31:37 +08:00
|
|
|
)
|
2019-06-27 19:27:37 +08:00
|
|
|
|
|
|
|
# Abseil
|
2019-11-25 20:31:37 +08:00
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "com_google_absl",
|
2022-04-21 15:58:55 +08:00
|
|
|
sha256 = "1a87de20498817e4a8b9f146214bb92d0cb17b7ad8a65678eada7b78ec900e14", # 2022-04-20
|
|
|
|
strip_prefix = "abseil-cpp-3dccef2a91243460364312d3e1100ff1d573fb1d",
|
|
|
|
urls = ["https://github.com/abseil/abseil-cpp/archive/3dccef2a91243460364312d3e1100ff1d573fb1d.zip"],
|
2019-11-25 20:31:37 +08:00
|
|
|
)
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "com_google_absl_py",
|
2021-04-26 19:59:52 +08:00
|
|
|
sha256 = "3d0278d88bbd52993f381d1e20887fa30f0556f6263b3f7bfcad62c69f39b38e", # 2021-03-09
|
|
|
|
strip_prefix = "abseil-py-9954557f9df0b346a57ff82688438c55202d2188",
|
|
|
|
urls = ["https://github.com/abseil/abseil-py/archive/9954557f9df0b346a57ff82688438c55202d2188.zip"],
|
2019-11-25 20:31:37 +08:00
|
|
|
)
|
2019-06-27 19:27:37 +08:00
|
|
|
|
|
|
|
# Abseil-py dependency for Python 2/3 compatiblity
|
2019-11-25 20:31:37 +08:00
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "six_archive",
|
|
|
|
build_file = "@com_google_sandboxed_api//sandboxed_api:bazel/external/six.BUILD",
|
2021-04-26 19:59:52 +08:00
|
|
|
sha256 = "30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259", # 2020-05-21
|
|
|
|
strip_prefix = "six-1.15.0",
|
|
|
|
urls = ["https://pypi.python.org/packages/source/s/six/six-1.15.0.tar.gz"],
|
2019-11-25 20:31:37 +08:00
|
|
|
)
|
2019-06-27 19:27:37 +08:00
|
|
|
|
|
|
|
# gflags
|
2020-04-29 21:45:14 +08:00
|
|
|
# TODO(cblichmann): Use Abseil flags once logging is in Abseil
|
2019-11-25 20:31:37 +08:00
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "com_github_gflags_gflags",
|
2020-04-29 21:45:14 +08:00
|
|
|
sha256 = "97312c67e5e0ad7fe02446ee124629ca7890727469b00c9a4bf45da2f9b80d32", # 2019-11-13
|
|
|
|
strip_prefix = "gflags-addd749114fab4f24b7ea1e0f2f837584389e52c",
|
|
|
|
urls = ["https://github.com/gflags/gflags/archive/addd749114fab4f24b7ea1e0f2f837584389e52c.zip"],
|
2019-11-25 20:31:37 +08:00
|
|
|
)
|
2019-06-27 19:27:37 +08:00
|
|
|
|
|
|
|
# Google logging
|
2020-04-29 21:45:14 +08:00
|
|
|
# TODO(cblichmann): Remove dependency once logging is in Abseil
|
2019-11-25 20:31:37 +08:00
|
|
|
maybe(
|
|
|
|
http_archive,
|
2019-06-27 19:27:37 +08:00
|
|
|
name = "com_google_glog",
|
2020-04-29 21:45:14 +08:00
|
|
|
sha256 = "feca3c7e29a693cab7887409756d89d342d4a992d54d7c5599bebeae8f7b50be", # 2020-02-16
|
|
|
|
strip_prefix = "glog-3ba8976592274bc1f907c402ce22558011d6fc5e",
|
|
|
|
urls = ["https://github.com/google/glog/archive/3ba8976592274bc1f907c402ce22558011d6fc5e.zip"],
|
2019-06-27 19:27:37 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# Protobuf
|
2019-11-25 20:31:37 +08:00
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "com_google_protobuf",
|
2021-04-26 19:59:52 +08:00
|
|
|
sha256 = "dd513a79c7d7e45cbaeaf7655289f78fd6b806e52dbbd7018ef4e3cf5cff697a", # 2021-04-08
|
|
|
|
strip_prefix = "protobuf-3.15.8",
|
|
|
|
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.15.8.zip"],
|
2019-11-25 20:31:37 +08:00
|
|
|
)
|
2019-06-27 19:27:37 +08:00
|
|
|
|
|
|
|
# libcap
|
|
|
|
http_archive(
|
|
|
|
name = "org_kernel_libcap",
|
2019-07-01 17:53:20 +08:00
|
|
|
build_file = "@com_google_sandboxed_api//sandboxed_api:bazel/external/libcap.BUILD",
|
2019-11-25 20:31:37 +08:00
|
|
|
sha256 = "260b549c154b07c3cdc16b9ccc93c04633c39f4fb6a4a3b8d1fa5b8a9c3f5fe8", # 2019-04-16
|
|
|
|
strip_prefix = "libcap-2.27",
|
|
|
|
urls = ["https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.27.tar.gz"],
|
2019-06-27 19:27:37 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# libffi
|
|
|
|
autotools_repository(
|
|
|
|
name = "org_sourceware_libffi",
|
2019-07-01 17:53:20 +08:00
|
|
|
build_file = "@com_google_sandboxed_api//sandboxed_api:bazel/external/libffi.BUILD",
|
2019-11-25 20:31:37 +08:00
|
|
|
sha256 = "653ffdfc67fbb865f39c7e5df2a071c0beb17206ebfb0a9ecb18a18f63f6b263", # 2019-11-02
|
|
|
|
strip_prefix = "libffi-3.3-rc2",
|
|
|
|
urls = ["https://github.com/libffi/libffi/releases/download/v3.3-rc2/libffi-3.3-rc2.tar.gz"],
|
2019-06-27 19:27:37 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# libunwind
|
|
|
|
autotools_repository(
|
|
|
|
name = "org_gnu_libunwind",
|
2019-07-01 17:53:20 +08:00
|
|
|
build_file = "@com_google_sandboxed_api//sandboxed_api:bazel/external/libunwind.BUILD",
|
2019-06-27 19:27:37 +08:00
|
|
|
configure_args = [
|
|
|
|
"--disable-documentation",
|
|
|
|
"--disable-minidebuginfo",
|
|
|
|
"--disable-shared",
|
|
|
|
"--enable-ptrace",
|
|
|
|
],
|
2022-01-07 00:25:18 +08:00
|
|
|
sha256 = "4a6aec666991fb45d0889c44aede8ad6eb108071c3554fcdff671f9c94794976", # 2021-12-01
|
|
|
|
strip_prefix = "libunwind-1.6.2",
|
|
|
|
urls = ["https://github.com/libunwind/libunwind/releases/download/v1.6.2/libunwind-1.6.2.tar.gz"],
|
2019-06-27 19:27:37 +08:00
|
|
|
)
|
2022-04-25 14:51:06 +08:00
|
|
|
|
|
|
|
# GoogleTest/GoogleMock
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "com_google_googletest",
|
|
|
|
sha256 = "1009ce4e75a64a4e61bcb2efaa256f9d54e6a859a2985cb6fa57c06d45356866", # 2021-12-20
|
|
|
|
strip_prefix = "googletest-9a32aee22d771387c494be2d8519fbdf46a713b2",
|
|
|
|
urls = ["https://github.com/google/googletest/archive/9a32aee22d771387c494be2d8519fbdf46a713b2.zip"],
|
|
|
|
)
|
|
|
|
|
|
|
|
# Google Benchmark
|
|
|
|
maybe(
|
|
|
|
http_archive,
|
|
|
|
name = "com_google_benchmark",
|
|
|
|
sha256 = "12663580821c69f5a71217433b58e96f061570f0e18d94891b82115fcdb4284d", # 2021-12-14
|
|
|
|
strip_prefix = "benchmark-3b3de69400164013199ea448f051d94d7fc7d81f",
|
|
|
|
urls = ["https://github.com/google/benchmark/archive/3b3de69400164013199ea448f051d94d7fc7d81f.zip"],
|
|
|
|
)
|
|
|
|
|
|
|
|
# LLVM/libclang
|
|
|
|
maybe(
|
|
|
|
llvm_configure,
|
|
|
|
name = "llvm-project",
|
|
|
|
commit = "2c494f094123562275ae688bd9e946ae2a0b4f8b", # 2022-03-31
|
|
|
|
sha256 = "59b9431ae22f0ea5f2ce880925c0242b32a9e4f1ae8147deb2bb0fc19b53fa0d",
|
|
|
|
system_libraries = True, # Prefer system libraries
|
|
|
|
)
|