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