You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
workspace(name = "pthreadpool")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
# Bazel rule definitions
|
|
http_archive(
|
|
name = "rules_cc",
|
|
strip_prefix = "rules_cc-master",
|
|
urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"],
|
|
)
|
|
|
|
# Google Test framework, used by most unit-tests.
|
|
http_archive(
|
|
name = "com_google_googletest",
|
|
strip_prefix = "googletest-master",
|
|
urls = ["https://github.com/google/googletest/archive/master.zip"],
|
|
)
|
|
|
|
# Google Benchmark library, used in micro-benchmarks.
|
|
http_archive(
|
|
name = "com_google_benchmark",
|
|
strip_prefix = "benchmark-master",
|
|
urls = ["https://github.com/google/benchmark/archive/master.zip"],
|
|
)
|
|
|
|
# FXdiv library, used for repeated integer division by the same factor
|
|
http_archive(
|
|
name = "FXdiv",
|
|
strip_prefix = "FXdiv-f7dd0576a1c8289ef099d4fd8b136b1c4487a873",
|
|
sha256 = "6e4b6e3c58e67c3bb090e286c4f235902c89b98cf3e67442a18f9167963aa286",
|
|
urls = ["https://github.com/Maratyszcza/FXdiv/archive/f7dd0576a1c8289ef099d4fd8b136b1c4487a873.zip"],
|
|
)
|
|
|
|
# Android NDK location and version is auto-detected from $ANDROID_NDK_HOME environment variable
|
|
android_ndk_repository(name = "androidndk")
|
|
|
|
# Android SDK location and API is auto-detected from $ANDROID_HOME environment variable
|
|
android_sdk_repository(name = "androidsdk")
|