mirror of
https://github.com/google/benchmark.git
synced 2024-11-29 00:34:42 +00:00
aacf2b1af9
* Migrate to bzlmod * Update Python version to PY3, as indicated by the actual source file. * Migrate more libraries & first draft of direct pywheel rule usage in Bazel * Integrate with nanobind and libpfm * Make Python toolchain a dev dependency * Undo py_wheel usage until later * Added support for bzlmod for C++ parts of google_benchmark. * Make //tools:all buildable with --enable_bzlmod --------- Co-authored-by: Andy Christiansen <achristiansen@google.com>
23 lines
586 B
Python
23 lines
586 B
Python
workspace(name = "com_github_google_benchmark")
|
|
|
|
load("//:bazel/benchmark_deps.bzl", "benchmark_deps")
|
|
|
|
benchmark_deps()
|
|
|
|
load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
|
|
|
|
rules_foreign_cc_dependencies()
|
|
|
|
load("@rules_python//python:pip.bzl", pip3_install="pip_install")
|
|
|
|
pip3_install(
|
|
name = "tools_pip_deps",
|
|
requirements = "//tools:requirements.txt",
|
|
)
|
|
|
|
new_local_repository(
|
|
name = "python_headers",
|
|
build_file = "@//bindings/python:python_headers.BUILD",
|
|
path = "<PYTHON_INCLUDE_PATH>", # May be overwritten by setup.py.
|
|
)
|