blob: 9d02c098f3954517cde7378f276737409dad8a0e [file] [log] [blame]
Serge Bazanskia7674672021-05-30 21:09:34 +00001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2load("@io_bazel_rules_go//extras:embed_data.bzl", "go_embed_data")
3
4go_embed_data(
5 name = "static",
6 srcs = [
Serge Bazanski19c8b602022-02-01 09:36:47 +00007 "fonts.css",
Serge Bazanski4d7b2f02021-05-31 22:33:51 +00008 "landing.css",
Serge Bazanski19c8b602022-02-01 09:36:47 +00009
10 "animations.js",
Serge Bazanski717aad42021-07-11 16:03:43 +000011 "led.js",
Serge Bazanski19c8b602022-02-01 09:36:47 +000012
radex41a3cfe2021-09-01 20:19:04 +020013 "frezarka.jpg",
radex41a3cfe2021-09-01 20:19:04 +020014 "kuka.jpg",
Serge Bazanski19c8b602022-02-01 09:36:47 +000015 "neon-syrenka.svg",
radex41a3cfe2021-09-01 20:19:04 +020016 "serwerownia.jpg",
Serge Bazanski19c8b602022-02-01 09:36:47 +000017 "space.jpg",
18 "tokarka.jpg",
19
20 "@com_gstatic_fonts_comfortaa_400//file:font.ttf",
21 "@com_gstatic_fonts_inconsolata_400//file:font.ttf",
22 "@com_gstatic_fonts_inconsolata_700//file:font.ttf",
23 "@com_npmjs_leaflet//:distfiles",
Serge Bazanskia7674672021-05-30 21:09:34 +000024 ],
25 package = "static",
26)
27
28# keep
29go_library(
30 name = "static_go",
31 srcs = [":static"],
32 importpath = "code.hackerspace.pl/hscloud/hswaw/site/static",
33 visibility = ["//visibility:public"],
34)