anki/qt/aqt/data/web/pages/BUILD.bazel

30 lines
512 B
Python

load("//ts:copy.bzl", "copy_files_into_group")
copy_files_into_group(
name = "graphs_page",
srcs = [
"graphs.css",
"graphs.html",
"graphs.js",
],
package = "//ts/graphs",
)
copy_files_into_group(
name = "congrats_page",
srcs = [
"congrats.html",
"congrats.js",
],
package = "//ts/congrats",
)
filegroup(
name = "pages",
srcs = [
"congrats_page",
"graphs_page",
],
visibility = ["//qt:__subpackages__"],
)