blob: 7dadfe508c13bdc47d7ac8c0753b57935d1b8719 [file] [log] [blame]
load("//infra-sk:index.bzl", "karma_test", "ts_library")
karma_test(
name = "fps_test",
src = "fps_test.ts",
deps = [
":fps_ts_lib",
"@npm//@types/chai",
"@npm//chai",
],
)
ts_library(
name = "fps_ts_lib",
srcs = ["fps.ts"],
visibility = ["//visibility:public"],
)
ts_library(
name = "index_ts_lib",
srcs = ["index.ts"],
visibility = ["//visibility:public"],
deps = [":fps_ts_lib"],
)