1load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 2load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") 3 4def benchmark_deps(): 5 """Loads dependencies required to build Google Benchmark.""" 6 7 if "bazel_skylib" not in native.existing_rules(): 8 http_archive( 9 name = "bazel_skylib", 10 sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728", 11 urls = [ 12 "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", 13 "https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz", 14 ], 15 ) 16 17 if "rules_foreign_cc" not in native.existing_rules(): 18 http_archive( 19 name = "rules_foreign_cc", 20 sha256 = "bcd0c5f46a49b85b384906daae41d277b3dc0ff27c7c752cc51e43048a58ec83", 21 strip_prefix = "rules_foreign_cc-0.7.1", 22 url = "https://github.com/bazelbuild/rules_foreign_cc/archive/0.7.1.tar.gz", 23 ) 24 25 if "rules_python" not in native.existing_rules(): 26 http_archive( 27 name = "rules_python", 28 url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.gz", 29 sha256 = "b6d46438523a3ec0f3cead544190ee13223a52f6a6765a29eae7b7cc24cc83a0", 30 ) 31 32 if "com_google_absl" not in native.existing_rules(): 33 http_archive( 34 name = "com_google_absl", 35 sha256 = "f41868f7a938605c92936230081175d1eae87f6ea2c248f41077c8f88316f111", 36 strip_prefix = "abseil-cpp-20200225.2", 37 urls = ["https://github.com/abseil/abseil-cpp/archive/20200225.2.tar.gz"], 38 ) 39 40 if "com_google_googletest" not in native.existing_rules(): 41 new_git_repository( 42 name = "com_google_googletest", 43 remote = "https://github.com/google/googletest.git", 44 tag = "release-1.11.0", 45 ) 46 47 if "nanobind" not in native.existing_rules(): 48 new_git_repository( 49 name = "nanobind", 50 remote = "https://github.com/wjakob/nanobind.git", 51 tag = "v1.4.0", 52 build_file = "@//bindings/python:nanobind.BUILD", 53 recursive_init_submodules = True, 54 ) 55 56 if "libpfm" not in native.existing_rules(): 57 # Downloaded from v4.9.0 tag at https://sourceforge.net/p/perfmon2/libpfm4/ref/master/tags/ 58 http_archive( 59 name = "libpfm", 60 build_file = str(Label("//tools:libpfm.BUILD.bazel")), 61 sha256 = "5da5f8872bde14b3634c9688d980f68bda28b510268723cc12973eedbab9fecc", 62 type = "tar.gz", 63 strip_prefix = "libpfm-4.11.0", 64 urls = ["https://sourceforge.net/projects/perfmon2/files/libpfm4/libpfm-4.11.0.tar.gz/download"], 65 ) 66