android13/external/google-fruit/extras/bazel_usage_example/WORKSPACE

20 lines
530 B
Python

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",
)