blob: 64ffb7520b47bb7623b8d6a3476f3d3db25a7fbb [file] [log] [blame]
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -08001# Description:
2# TensorBoard, a dashboard for investigating TensorFlow
Manjunath Kudlurf41959c2015-11-06 16:27:58 -08003
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -08004package(default_visibility = ["//tensorflow:internal"])
Manjunath Kudlurf41959c2015-11-06 16:27:58 -08005
A. Unique TensorFlowercc094192016-02-16 18:33:17 -08006licenses(["notice"]) # Apache 2.0
7
8exports_files(["LICENSE"])
9
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080010filegroup(
A. Unique TensorFlowercc094192016-02-16 18:33:17 -080011 name = "frontend",
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080012 srcs = [
Martin Wicke21716d82016-07-25 13:48:16 -080013 "TAG",
Dan Smilkov33c9c022016-09-06 17:58:53 -080014 "dist/bazel-html-imports.html",
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080015 "dist/index.html",
16 "dist/tf-tensorboard.html",
Martin Wicke21716d82016-07-25 13:48:16 -080017 "//tensorflow/tensorboard/bower",
Illia Polosukhin5c9bc512016-04-18 17:56:51 -080018 "//tensorflow/tensorboard/lib:all_files",
19 ],
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080020)
21
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080022py_binary(
23 name = "tensorboard",
A. Unique TensorFlowercc094192016-02-16 18:33:17 -080024 srcs = ["tensorboard.py"],
25 data = [":frontend"],
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080026 srcs_version = "PY2AND3",
27 deps = [
A. Unique TensorFlower6b97b902016-02-16 14:53:43 -080028 "//tensorflow/python:platform",
Vijay Vasudevanfe056f02016-02-17 11:42:30 -080029 "//tensorflow/tensorboard/backend:server",
A. Unique TensorFlower4f8670d2016-02-11 17:00:14 -080030 ],
Manjunath Kudlurf41959c2015-11-06 16:27:58 -080031)
A. Unique TensorFlowercc094192016-02-16 18:33:17 -080032
33filegroup(
34 name = "all_files",
35 srcs = glob(
36 ["**/*"],
37 exclude = [
38 "**/METADATA",
39 "**/OWNERS",
40 "**/node_modules/**",
41 "**/typings/**",
42 ],
43 ),
44 visibility = ["//tensorflow:__subpackages__"],
45)