2018-03-08 12:48:46 +00:00
|
|
|
workspace(name = "com_github_google_benchmark")
|
|
|
|
|
2024-04-20 08:23:27 +00:00
|
|
|
load("//:bazel/benchmark_deps.bzl", "benchmark_deps")
|
2019-10-08 10:09:51 +00:00
|
|
|
|
2024-04-20 08:23:27 +00:00
|
|
|
benchmark_deps()
|
2020-06-08 14:21:52 +00:00
|
|
|
|
2024-04-20 08:23:27 +00:00
|
|
|
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
|
2020-05-06 16:28:29 +00:00
|
|
|
|
2024-04-20 08:23:27 +00:00
|
|
|
rules_foreign_cc_dependencies()
|
|
|
|
|
|
|
|
load("@rules_python//python:pip.bzl", pip3_install="pip_install")
|
|
|
|
|
|
|
|
pip3_install(
|
|
|
|
name = "tools_pip_deps",
|
|
|
|
requirements = "//tools:requirements.txt",
|
2020-05-06 16:28:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
new_local_repository(
|
|
|
|
name = "python_headers",
|
|
|
|
build_file = "@//bindings/python:python_headers.BUILD",
|
2024-04-20 08:23:27 +00:00
|
|
|
path = "<PYTHON_INCLUDE_PATH>", # May be overwritten by setup.py.
|
2022-07-20 01:51:00 +00:00
|
|
|
)
|