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.
19 lines
573 B
19 lines
573 B
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
git_repository(
|
|
name = "com_google_googletest",
|
|
remote = "https://github.com/google/googletest",
|
|
# GTest HEAD as of August 2018.
|
|
commit = "9c96f500a39df6915f8f1ab53b60be9889f1572b",
|
|
)
|
|
|
|
git_repository(
|
|
name = "com_github_nelhage_rules_boost",
|
|
commit = "1e3a69bf2d5cd10c34b74f066054cd335d033d71",
|
|
remote = "https://github.com/nelhage/rules_boost",
|
|
shallow_since = "1591047380 -0700",
|
|
)
|
|
|
|
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
|
|
boost_deps()
|