2017-10-10 14:59:31 +00:00
|
|
|
workspace(name = "bazel_skylib")
|
2018-12-04 15:14:08 +00:00
|
|
|
|
|
|
|
load(":workspace.bzl", "bazel_skylib_workspace")
|
|
|
|
|
|
|
|
bazel_skylib_workspace()
|
2019-02-22 20:29:00 +00:00
|
|
|
|
|
|
|
# Below this line is for documentation generation only,
|
|
|
|
# and should thus not be included by dependencies on
|
|
|
|
# bazel-skylib.
|
|
|
|
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
|
|
|
|
git_repository(
|
|
|
|
name = "io_bazel_skydoc",
|
|
|
|
remote = "https://github.com/bazelbuild/skydoc.git",
|
|
|
|
tag = "0.2.0",
|
|
|
|
)
|
|
|
|
load("@io_bazel_skydoc//skylark:skylark.bzl", "skydoc_repositories")
|
|
|
|
skydoc_repositories()
|