mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
431c562815
This is an incremental step to produce dgeni output with bazel. The generated outputs are not yet used by other targets.
19 lines
316 B
Python
19 lines
316 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "test-utils",
|
|
srcs = ["index.ts"],
|
|
deps = [
|
|
"@npm//@types/selenium-webdriver",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "files_for_docgen",
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
)
|