mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
14 lines
322 B
Python
14 lines
322 B
Python
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
|
|
exports_files(["config.yaml"])
|
|
|
|
bzl_library(
|
|
name = "deps",
|
|
srcs = ["deps.bzl"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@bazel_tools//tools/build_defs/repo:http.bzl",
|
|
"@bazel_tools//tools/build_defs/repo:utils.bzl",
|
|
],
|
|
)
|