build: add bazel rulse for benchmarks (#21436)

PR Close #21436
This commit is contained in:
Misko Hevery
2018-01-10 00:07:55 -08:00
committed by Alex Eagle
parent fc3e7e0381
commit ef956a20c3
7 changed files with 109 additions and 1 deletions

View File

@ -0,0 +1,20 @@
package(default_visibility = ["//visibility:public"])
load("@angular//:index.bzl", "ng_module")
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
ng_module(
name = "render3_lib",
srcs = glob(
[
"**/*.ts",
],
),
tsconfig = "//packages:tsconfig",
deps = [
"//modules/benchmarks/src/tree:util_lib",
"//packages:types",
"//packages/core",
"@rxjs",
],
)