mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -04:00
29 lines
512 B
Text
29 lines
512 B
Text
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__"],
|
|
)
|