chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
module(
|
||||
name = 'brpc',
|
||||
version = '1.17.0',
|
||||
compatibility_level = 1,
|
||||
)
|
||||
|
||||
# --registry=https://bcr.bazel.build
|
||||
bazel_dep(name = 'abseil-cpp', version = '20210324.2', repo_name = 'com_google_absl')
|
||||
bazel_dep(name = 'bazel_skylib', version = '1.0.3')
|
||||
bazel_dep(name = 'boringssl', version = '0.0.0-20211025-d4f1ab9')
|
||||
bazel_dep(name = 'protobuf', version = '27.3', repo_name = 'com_google_protobuf')
|
||||
bazel_dep(name = 'gflags', version = '2.2.2', repo_name = 'com_github_gflags_gflags')
|
||||
bazel_dep(name = 'glog', version = '0.5.0', repo_name = 'com_github_google_glog')
|
||||
bazel_dep(name = 'platforms', version = '0.0.4')
|
||||
bazel_dep(name = "apple_support", version = "1.22.1")
|
||||
bazel_dep(name = 'rules_cc', version = '0.0.1')
|
||||
bazel_dep(name = 'rules_proto', version = '4.0.0')
|
||||
bazel_dep(name = 'zlib', version = '1.3.1.bcr.5', repo_name = 'com_github_madler_zlib')
|
||||
bazel_dep(name = 'babylon', version = '1.4.4')
|
||||
# --registry=https://raw.githubusercontent.com/apache/brpc/master/registry
|
||||
# `registry/modules/libunwind/` (see the `--registry=https://raw.githubusercontent.com/apache/brpc/master/registry`
|
||||
# entry at the top of `.bazelrc`). The version suffix `.brpc-no-unwind` marks
|
||||
# this as brpc's self-maintained variant whose `src/unwind/*.c` (the GCC
|
||||
# `_Unwind_*` ABI compatibility layer) is gated by the
|
||||
# `--define=libunwind_hide_unwind_symbols=true` switch. Hiding those
|
||||
# `_Unwind_*` symbols is required for `--define=with_bthread_tracer=true`
|
||||
# to work without crashing in pthread_exit / exception unwinding.
|
||||
# See docs/cn/bthread_tracer.md for background.
|
||||
bazel_dep(name = 'libunwind', version = '1.8.1.brpc-no-unwind', repo_name = 'com_github_libunwind_libunwind')
|
||||
|
||||
# --registry=https://baidu.github.io/babylon/registry
|
||||
bazel_dep(name = 'leveldb', version = '1.23', repo_name = 'com_github_google_leveldb')
|
||||
single_version_override(
|
||||
module_name = "leveldb",
|
||||
registry = "https://raw.githubusercontent.com/secretflow/bazel-registry/main",
|
||||
)
|
||||
bazel_dep(name = 'openssl', version = '3.3.2')
|
||||
single_version_override(
|
||||
module_name = "openssl",
|
||||
version = "3.3.2.bcr.1",
|
||||
registry = "https://raw.githubusercontent.com/secretflow/bazel-registry/main",
|
||||
)
|
||||
bazel_dep(name = 'thrift', version = '0.21.0', repo_name = 'org_apache_thrift')
|
||||
|
||||
# test only
|
||||
bazel_dep(name = "gperftools", version = "2.18.1", dev_dependency = True)
|
||||
bazel_dep(name = "nlohmann_json", version = "3.12.0", dev_dependency = True)
|
||||
bazel_dep(name = 'googletest', version = '1.14.0.bcr.1', repo_name = 'com_google_googletest', dev_dependency = True)
|
||||
bazel_dep(name = 'hedron_compile_commands', dev_dependency = True)
|
||||
git_override(
|
||||
module_name = 'hedron_compile_commands',
|
||||
remote = 'https://github.com/hedronvision/bazel-compile-commands-extractor.git',
|
||||
commit = '1e08f8e0507b6b6b1f4416a9a22cf5c28beaba93', # Jun 28, 2024
|
||||
)
|
||||
Reference in New Issue
Block a user