
This is a partial cherry-pick of 370ab66c4f020da7e1a6b25b96109f1b3cbf9cba which included this along with a new feature for ivy. PR Close #22258
21 lines
446 B
Python
21 lines
446 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
ng_module(
|
|
name = "animations",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
module_name = "@angular/platform-browser/animations",
|
|
deps = [
|
|
"//packages/animations",
|
|
"//packages/animations/browser",
|
|
"//packages/core",
|
|
"//packages/platform-browser",
|
|
],
|
|
)
|