mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
ea495d958f
* removed /tools/http_server and uses http_server from rules_nodejs * updated bazel schematics to use angular bundles PR Close #29063
20 lines
455 B
Python
20 lines
455 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "e2e_util",
|
|
testonly = 1,
|
|
srcs = glob(["*.ts"]),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/benchpress",
|
|
"@npm//@types/fs-extra",
|
|
"@npm//@types/selenium-webdriver",
|
|
"@npm//fs-extra",
|
|
"@npm//node-uuid",
|
|
"@npm//protractor",
|
|
"@npm//selenium-webdriver",
|
|
],
|
|
)
|