aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/BUILD
blob: 1eb5b124157effaf0d18da795be0878cf6dc03e3 (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
42
43
44
45
46
47
# Description:
# TensorBoard, a dashboard for investigating TensorFlow

package(default_visibility = ["//tensorflow:internal"])

licenses(["notice"])  # Apache 2.0

py_binary(
    name = "tensorboard",
    srcs = ["tensorboard.py"],
    data = [":assets"],
    srcs_version = "PY2AND3",
    deps = [
        "//tensorflow/tensorboard/backend:application",
        "//tensorflow/tensorboard/backend/event_processing:event_file_inspector",
        "//tensorflow/tensorboard/plugins/audio:audio_plugin",
        "//tensorflow/tensorboard/plugins/distributions:distributions_plugin",
        "//tensorflow/tensorboard/plugins/graphs:graphs_plugin",
        "//tensorflow/tensorboard/plugins/histograms:histograms_plugin",
        "//tensorflow/tensorboard/plugins/images:images_plugin",
        "//tensorflow/tensorboard/plugins/projector:projector_plugin",
        "//tensorflow/tensorboard/plugins/scalars:scalars_plugin",
        "//tensorflow/tensorboard/plugins/text:text_plugin",
        "@org_pocoo_werkzeug//:werkzeug",
    ],
)

filegroup(
    name = "assets",
    srcs = [
        "TAG",
        "//tensorflow/tensorboard/components:index.html",
    ],
)

filegroup(
    name = "all_files",
    srcs = glob(
        ["**"],
        exclude = [
            "METADATA",
            "OWNERS",
            "tensorboard.google.bzl",
        ],
    ),
    tags = ["notsan"],
)