mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
0d16c136ae
If using Sandboxed API from an external Bazel WORKSPACE, dependencies can be imported by declaring the repository and calling `sapi_deps()`: ```python git_repository( name = "com_google_sandboxed_api", commit = "master", remote = "https://github.com/google/sandboxed-api.git", ) load( "@com_google_sandboxed_api//sandboxed_api/bazel:sapi_deps.bzl", "sapi_deps", ) sapi_deps() ``` PiperOrigin-RevId: 255373664 Change-Id: I4c41ffc75e1ca95eb126702cb2d5cedb255191d5
58 lines
2.2 KiB
Python
58 lines
2.2 KiB
Python
# Copyright 2019 Google LLC. All Rights Reserved.
|
|
#
|
|
# 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
|
|
#
|
|
# http://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(name = "com_google_sandboxed_api")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
load("//sandboxed_api/bazel:sapi_deps.bzl", "sapi_deps")
|
|
|
|
# Load common dependencies, then Protobuf's
|
|
sapi_deps()
|
|
|
|
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
|
|
|
|
protobuf_deps()
|
|
|
|
# zlib, only needed for examples
|
|
http_archive(
|
|
name = "net_zlib",
|
|
build_file = "//sandboxed_api:bazel/external/zlib.BUILD",
|
|
patch_args = ["-p1"],
|
|
# This is a patch that removes the "OF" macro that is used in zlib function
|
|
# definitions. It is necessary, because libclang, the library used by the
|
|
# interface generator to parse C/C++ files contains a bug that manifests
|
|
# itself with macros like this.
|
|
# We are investigating better ways to avoid this issue. For most "normal"
|
|
# C and C++ headers, parsing just works.
|
|
patches = ["//sandboxed_api:bazel/external/zlib.patch"],
|
|
sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
|
|
strip_prefix = "zlib-1.2.11",
|
|
urls = ["https://www.zlib.net/zlib-1.2.11.tar.gz"],
|
|
)
|
|
|
|
# GoogleTest/GoogleMock
|
|
http_archive(
|
|
name = "com_google_googletest",
|
|
sha256 = "baed63b97595c32667694de0a434f8f23da59609c4a44f3360ba94b0abd5c583",
|
|
strip_prefix = "googletest-8ffb7e5c88b20a297a2e786c480556467496463b",
|
|
urls = ["https://github.com/google/googletest/archive/8ffb7e5c88b20a297a2e786c480556467496463b.zip"], # 2019-05-30
|
|
)
|
|
|
|
# Google Benchmark
|
|
http_archive(
|
|
name = "com_google_benchmark",
|
|
strip_prefix = "benchmark-master",
|
|
urls = ["https://github.com/google/benchmark/archive/master.zip"],
|
|
)
|