blob: 156594c4417b929ff655bbd238092404b46e53a7 [file] [log] [blame]
load("@npm//@bazel/typescript:index.bzl", "ts_library")
load("//tools/build_rules:js.bzl", "rollup_bundle")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "cpp_plot",
srcs = ["cpp_plot.ts"],
target_compatible_with = ["@platforms//os:linux"],
deps = [
"//aos:configuration_ts_fbs",
"//aos/network/www:proxy",
"//frc971/analysis:plot_data_utils",
],
)
rollup_bundle(
name = "cpp_plot_bundle",
entry_point = "cpp_plot.ts",
target_compatible_with = ["@platforms//os:linux"],
deps = [
":cpp_plot",
],
)
filegroup(
name = "cpp_plot_files",
srcs = [
"cpp_plot_bundle.min.js",
"index.html",
],
)