build: fix invalid bazel target referenced by benchmarks (#28626)

PR Close #28626
This commit is contained in:
Paul Gschwendtner 2019-02-08 23:24:15 +01:00 committed by Miško Hevery
parent fb2d15fda1
commit 2f73c554c9
3 changed files with 2 additions and 3 deletions

View File

@ -1 +0,0 @@
/private/var/tmp/_bazel_misko/1126e726ab9a0d0ed3e2392a7bbe5a3c/execroot/angular/bazel-out

View File

@ -21,7 +21,7 @@ ts_library(
"largetable_perf.spec.ts", "largetable_perf.spec.ts",
], ],
deps = [ deps = [
"//modules/e2e_util:lib", "//modules/e2e_util",
"//packages:types", "//packages:types",
"@ngdeps//protractor", "@ngdeps//protractor",
], ],

View File

@ -3,7 +3,7 @@ package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ts_library") load("//tools:defaults.bzl", "ts_library")
ts_library( ts_library(
name = "lib", name = "e2e_util",
testonly = 1, testonly = 1,
srcs = glob(["*.ts"]), srcs = glob(["*.ts"]),
deps = [ deps = [