aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/components/tf_graph/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tensorboard/components/tf_graph/BUILD')
-rw-r--r--tensorflow/tensorboard/components/tf_graph/BUILD41
1 files changed, 22 insertions, 19 deletions
diff --git a/tensorflow/tensorboard/components/tf_graph/BUILD b/tensorflow/tensorboard/components/tf_graph/BUILD
index 115964a59b..92d2e8a42a 100644
--- a/tensorflow/tensorboard/components/tf_graph/BUILD
+++ b/tensorflow/tensorboard/components/tf_graph/BUILD
@@ -1,10 +1,11 @@
package(default_visibility = ["//tensorflow:internal"])
-load("@io_bazel_rules_closure//closure:defs.bzl", "web_library")
+load("//tensorflow/tensorboard:defs.bzl", "tensorboard_webcomponent_library")
+load("//tensorflow/tensorboard:web.bzl", "ts_web_library")
licenses(["notice"]) # Apache 2.0
-web_library(
+ts_web_library(
name = "tf_graph",
srcs = [
"tf-graph.html",
@@ -15,7 +16,7 @@ web_library(
deps = [
"//tensorflow/tensorboard/components/tf_dashboard_common",
"//tensorflow/tensorboard/components/tf_graph_common",
- "@org_polymer",
+ "//tensorflow/tensorboard/components/tf_imports:polymer",
"@org_polymer_iron_flex_layout",
"@org_polymer_iron_icons",
"@org_polymer_paper_button",
@@ -28,26 +29,28 @@ web_library(
],
)
-filegroup(
- name = "all_files",
- srcs = glob(["**"]),
- tags = ["notsan"],
-)
-
-################################################################################
-# MARKED FOR DELETION
-
-load("//tensorflow/tensorboard:defs.bzl", "tensorboard_webcomponent_library")
-
tensorboard_webcomponent_library(
name = "legacy",
- srcs = [
- "tf-graph.html",
- "tf-graph-minimap.html",
- "tf-graph-scene.html",
- ],
+ srcs = [":tf_graph"],
destdir = "tf-graph",
deps = [
+ "//tensorflow/tensorboard/components/tf_dashboard_common:legacy",
"//tensorflow/tensorboard/components/tf_graph_common:legacy",
+ "//third_party/javascript/polymer/v1/iron-flex-layout:lib",
+ "//third_party/javascript/polymer/v1/iron-icons:lib",
+ "//third_party/javascript/polymer/v1/paper-button:lib",
+ "//third_party/javascript/polymer/v1/paper-dropdown-menu:lib",
+ "//third_party/javascript/polymer/v1/paper-input:lib",
+ "//third_party/javascript/polymer/v1/paper-menu:lib",
+ "//third_party/javascript/polymer/v1/paper-radio-group:lib",
+ "//third_party/javascript/polymer/v1/paper-toggle-button:lib",
+ "//third_party/javascript/polymer/v1/paper-tooltip:lib",
+ "//third_party/javascript/polymer/v1/polymer:lib",
],
)
+
+filegroup(
+ name = "all_files",
+ srcs = glob(["**"]),
+ tags = ["notsan"],
+)