mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Remove the dev-infra directory and complete the migration to using the code generated by the angular/dev-infra repository. PR Close #43061
26 lines
756 B
Text
26 lines
756 B
Text
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
|
|
|
|
package(default_visibility = ["//modules/benchmarks:__subpackages__"])
|
|
|
|
component_benchmark(
|
|
name = "benchmark",
|
|
driver = ":class_bindings.perf-spec.ts",
|
|
driver_deps = [
|
|
"@npm//@angular/dev-infra-private/bazel/benchmark/driver-utilities",
|
|
"@npm//@types/jasmine",
|
|
"@npm//protractor",
|
|
],
|
|
ng_deps = [
|
|
"//packages:types",
|
|
"//packages/common",
|
|
"//packages/core",
|
|
"//packages/platform-browser",
|
|
"@npm//rxjs",
|
|
],
|
|
ng_srcs = glob(
|
|
["**/*.ts"],
|
|
exclude = ["**/*.perf-spec.ts"],
|
|
),
|
|
prefix = "",
|
|
styles = ["styles.css"],
|
|
)
|