aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/vz_heatmap_d3v4/BUILD
blob: b62629fc55493269a4c080c20cd3aa5ec9ee2c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package(default_visibility = ["//tensorflow:internal"])

load("@io_bazel_rules_closure//closure:defs.bzl", "web_library")

licenses(["notice"])  # Apache 2.0

web_library(
    name = "vz_heatmap_d3v4",
    srcs = ["vz-heatmap.html"],
    path = "/vz-heatmap",
    visibility = ["//visibility:public"],
    deps = [
        "//tensorflow/tensorboard/components/tf_imports_d3v4:d3",
        "@org_polymer",
        "@org_polymer_iron_resizable_behavior",
    ],
)

web_library(
    name = "index",
    srcs = [
        "demo/index.html",
        "index.html",
    ],
    path = "/vz-heatmap",
    visibility = ["//visibility:public"],
    deps = [
        ":vz_heatmap_d3v4",
        "//tensorflow/tensorboard/components/tf_imports_d3v4:d3",
        "@org_polymer",
        "@org_polymer_iron_component_page",
        "@org_polymer_iron_demo_helpers",
        "@org_polymer_webcomponentsjs",
    ],
)

filegroup(
    name = "all_files",
    srcs = glob(["**"]),
    tags = ["notsan"],
)