2020-04-24 13:26:36 -04:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
2020-04-22 12:41:04 -04:00
|
|
|
|
2020-04-24 16:14:28 -04:00
|
|
|
load("@npm_bazel_typescript//:index.bzl", "ts_library")
|
|
|
|
|
2018-07-06 18:42:07 -04:00
|
|
|
ts_library(
|
2020-04-24 16:14:28 -04:00
|
|
|
name = "driver-utilities",
|
2018-07-06 18:42:07 -04:00
|
|
|
srcs = glob(["*.ts"]),
|
2020-05-08 15:56:39 -04:00
|
|
|
module_name = "@angular/dev-infra-private/benchmark/driver-utilities",
|
2020-04-24 16:14:28 -04:00
|
|
|
tsconfig = "//dev-infra/benchmark/component_benchmark:tsconfig-e2e.json",
|
2018-07-06 18:42:07 -04:00
|
|
|
deps = [
|
|
|
|
"//packages/benchpress",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//@types/fs-extra",
|
2020-04-24 16:14:28 -04:00
|
|
|
"@npm//@types/node",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//@types/selenium-webdriver",
|
|
|
|
"@npm//fs-extra",
|
|
|
|
"@npm//node-uuid",
|
|
|
|
"@npm//protractor",
|
|
|
|
"@npm//selenium-webdriver",
|
2018-07-06 18:42:07 -04:00
|
|
|
],
|
|
|
|
)
|