14 lines
266 B
Python
14 lines
266 B
Python
|
|
load("//tools:defaults.bzl", "ng_module")
|
||
|
|
|
||
|
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
|
||
|
|
ng_module(
|
||
|
|
name = "testing",
|
||
|
|
testonly = True,
|
||
|
|
srcs = glob(["**/*.ts"]),
|
||
|
|
deps = [
|
||
|
|
"//src/material/core",
|
||
|
|
"@npm//@angular/core",
|
||
|
|
],
|
||
|
|
)
|