Skip to content

chore: add Bazel rule for MatDivider #9103

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions src/lib/divider/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package(default_visibility=["//visibility:public"])
load("@angular//:index.bzl", "ng_module")
load("@io_bazel_rules_sass//sass:sass.bzl", "sass_library", "sass_binary")


ng_module(
name = "divider",
srcs = glob(["**/*.ts"], exclude=["**/*.spec.ts"]),
module_name = "@angular/material/divider",
assets = [":divider_css"],
deps = [
"//src/lib/core",
"//src/cdk/coercion",
],
tsconfig = ":tsconfig-build.json",
)


sass_binary(
name = "divider_scss",
src = "divider.scss",
deps = ["//src/lib/core:core_scss_lib"],
)

# TODO(jelbourn): remove this when sass_binary supports specifying an output filename and dir.
# Copy the output of the sass_binary such that the filename and path match what we expect.
genrule(
name = "divider_css",
srcs = [":divider_scss"],
outs = ["divider.css"],
cmd = "cat $(locations :divider_scss) > $@",
)

1 change: 1 addition & 0 deletions src/lib/list/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ng_module(
assets = [":list_css"],
deps = [
"//src/lib/core",
"//src/lib/divider",
"//src/cdk/a11y",
"//src/cdk/coercion",
"//src/cdk/collections",
Expand Down