|
workspace(name = "pthreadpool") |
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
|
|
|
|
|
http_archive( |
|
name = "rules_cc", |
|
strip_prefix = "rules_cc-master", |
|
urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"], |
|
) |
|
|
|
|
|
http_archive( |
|
name = "com_google_googletest", |
|
strip_prefix = "googletest-master", |
|
urls = ["https://github.com/google/googletest/archive/master.zip"], |
|
) |
|
|
|
|
|
http_archive( |
|
name = "com_google_benchmark", |
|
strip_prefix = "benchmark-master", |
|
urls = ["https://github.com/google/benchmark/archive/master.zip"], |
|
) |
|
|
|
|
|
http_archive( |
|
name = "FXdiv", |
|
strip_prefix = "FXdiv-63058eff77e11aa15bf531df5dd34395ec3017c8", |
|
sha256 = "3d7b0e9c4c658a84376a1086126be02f9b7f753caa95e009d9ac38d11da444db", |
|
urls = ["https://github.com/Maratyszcza/FXdiv/archive/63058eff77e11aa15bf531df5dd34395ec3017c8.zip"], |
|
) |
|
|
|
|
|
android_ndk_repository(name = "androidndk") |
|
|
|
|
|
android_sdk_repository(name = "androidsdk") |
|
|