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.
20 lines
530 B
20 lines
530 B
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
git_repository(
|
|
name = "com_github_nelhage_rules_boost",
|
|
branch = "master",
|
|
remote = "https://github.com/nelhage/rules_boost",
|
|
)
|
|
|
|
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
|
|
boost_deps()
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
git_repository(
|
|
name = "com_google_fruit",
|
|
remote = "https://github.com/google/fruit",
|
|
branch = "master",
|
|
strip_prefix = "extras/bazel_root",
|
|
)
|