aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/BUILD
blob: caaf1769c0ddf2314329b646826ac874aac0bda5 (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
48
49
50
51
52
53
54
55
56
57
58
# 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 = "ts_web_library_default_typings",
    srcs = [
        # Ordering probably matters.
        "@com_microsoft_typescript//:lib.es6.d.ts",
        "@io_angular_clutz//:src/resources/closure.lib.d.ts",
        "clutz.d.ts",
    ],
    visibility = ["//visibility:public"],
)

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