2018-03-08 12:48:46 +00:00
|
|
|
workspace(name = "com_github_google_benchmark")
|
|
|
|
|
2022-12-19 11:12:32 +00:00
|
|
|
load("//:bazel/benchmark_deps.bzl", "benchmark_deps")
|
2019-04-09 12:02:45 +00:00
|
|
|
|
2022-12-19 11:12:32 +00:00
|
|
|
benchmark_deps()
|
2022-10-31 11:03:59 +00:00
|
|
|
|
|
|
|
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
|
2020-06-08 14:21:52 +00:00
|
|
|
|
2022-12-19 11:12:32 +00:00
|
|
|
rules_foreign_cc_dependencies()
|
2020-05-06 16:28:29 +00:00
|
|
|
|
2022-12-19 11:12:32 +00:00
|
|
|
load("@rules_python//python:pip.bzl", pip3_install="pip_install")
|
2022-10-31 11:03:59 +00:00
|
|
|
|
2022-12-19 11:12:32 +00:00
|
|
|
pip3_install(
|
2023-06-27 12:03:39 +00:00
|
|
|
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",
|
2023-02-03 09:47:02 +00:00
|
|
|
path = "<PYTHON_INCLUDE_PATH>", # May be overwritten by setup.py.
|
2020-05-06 16:28:29 +00:00
|
|
|
)
|