Anki/qt/aqt/data/web/css/vendor/BUILD.bazel
2021-03-09 13:37:56 +01:00

20 lines
499 B
Text

load("//ts:vendor.bzl", "copy_bootstrap_css", "copy_bootstrap_icons")
copy_bootstrap_css(name = "bootstrap")
copy_bootstrap_icons(name = "bootstrap-icons")
files = [
"bootstrap",
"bootstrap-icons",
]
directories = []
filegroup(
name = "vendor",
srcs = glob(["*.css"]) +
["//qt/aqt/data/web/css/vendor:{}".format(file) for file in files] +
["//qt/aqt/data/web/css/vendor/{}".format(dir) for dir in directories],
visibility = ["//qt:__subpackages__"],
)