aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/sass/hello_world/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sass/hello_world/BUILD')
-rw-r--r--examples/sass/hello_world/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/sass/hello_world/BUILD b/examples/sass/hello_world/BUILD
new file mode 100644
index 0000000000..7109872d52
--- /dev/null
+++ b/examples/sass/hello_world/BUILD
@@ -0,0 +1,13 @@
+package(default_visibility = ["//visibility:public"])
+
+load("/tools/build_defs/sass/sass", "sass_binary")
+
+# Import our shared colors and fonts so we can generate a CSS file.
+sass_binary(
+ name = "hello_world",
+ src = "main.scss",
+ deps = [
+ "//examples/sass/shared:colors",
+ "//examples/sass/shared:fonts",
+ ],
+)