aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/css
diff options
context:
space:
mode:
authorGravatar David Chen <dzc@google.com>2016-05-06 07:57:17 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-05-06 09:35:25 +0000
commit8a142fef810435ca0f45b410e67c3a6b29919c75 (patch)
treec3ab6bb7598c1565996fdc9afca56dbc8f77e20c /third_party/css
parent8ed924a014f03b826ee19804a521c392702005fb (diff)
Add build targets for constructing the Bazel.io Jekyll tree.
This patch adds pkg_tar build targets to site/, which can be used to combine the Jekyll files under site/ with static Bootstrap and Font Awesome resources under third_party. Combining the site files with the generated Build Encyclopedia and Skylark Library documentation will be done in a future change. -- MOS_MIGRATED_REVID=121654239
Diffstat (limited to 'third_party/css')
-rw-r--r--third_party/css/bootstrap/BUILD8
-rw-r--r--third_party/css/font_awesome/BUILD2
2 files changed, 7 insertions, 3 deletions
diff --git a/third_party/css/bootstrap/BUILD b/third_party/css/bootstrap/BUILD
index 18fc491cc1..42c7a9dd1d 100644
--- a/third_party/css/bootstrap/BUILD
+++ b/third_party/css/bootstrap/BUILD
@@ -9,14 +9,16 @@ filegroup(
filegroup(
name = "bootstrap_css",
srcs = [
- "css/boostrap.css",
- "css/boostrap.css.map",
+ "css/bootstrap.css",
+ "css/bootstrap.css.map",
"css/bootstrap.min.css",
"css/bootstrap.min.css.map",
],
+ visibility = ["//site:__pkg__"],
)
filegroup(
name = "bootstrap_images",
- srcs = glob(["glyphicons-halflings-regular.*"]),
+ srcs = glob(["fonts/glyphicons-halflings-regular.*"]),
+ visibility = ["//site:__pkg__"],
)
diff --git a/third_party/css/font_awesome/BUILD b/third_party/css/font_awesome/BUILD
index 129178c81e..a58e75ed7a 100644
--- a/third_party/css/font_awesome/BUILD
+++ b/third_party/css/font_awesome/BUILD
@@ -12,9 +12,11 @@ filegroup(
"css/font-awesome.css",
"css/font-awesome.min.css",
],
+ visibility = ["//site:__pkg__"],
)
filegroup(
name = "font_awesome_font",
srcs = glob(["fonts/fontawesome-webfont.*"]),
+ visibility = ["//site:__pkg__"],
)