aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/defs.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tensorboard/defs.bzl')
-rw-r--r--tensorflow/tensorboard/defs.bzl7
1 files changed, 7 insertions, 0 deletions
diff --git a/tensorflow/tensorboard/defs.bzl b/tensorflow/tensorboard/defs.bzl
index b3712a8156..94e2d7c540 100644
--- a/tensorflow/tensorboard/defs.bzl
+++ b/tensorflow/tensorboard/defs.bzl
@@ -15,3 +15,10 @@
def tensorboard_webcomponent_library(**kwargs):
"""Rules referencing this will be deleted from the codebase soon."""
pass
+
+def _legacy_js_impl(target, ctx):
+ return struct()
+
+legacy_js = aspect(
+ implementation=_legacy_js_impl,
+ attr_aspects=["exports"])