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