mirror of https://github.com/google/benchmark.git
23 lines
590 B
Python
23 lines
590 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.
|
|
)
|