From 052ed96bcd672f406a77bef99d8c754924401c71 Mon Sep 17 00:00:00 2001 From: Dustyn <132942102+dloyda@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:45:45 -0700 Subject: [PATCH] disable precompiled libraries for incompatible tensorboard js_binaries Opt out breaking targets from using precompiled libraries. This is apart of the LSC to make precompiled libraries the default for js_binary and js_module_binary in google3. This is a no op, we are just moving the flag from the .bzl to the users BUILD file --- tensorboard/components/tensor_widget/BUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/tensorboard/components/tensor_widget/BUILD b/tensorboard/components/tensor_widget/BUILD index 7672210b365..86d0fc4a3d2 100644 --- a/tensorboard/components/tensor_widget/BUILD +++ b/tensorboard/components/tensor_widget/BUILD @@ -36,6 +36,7 @@ tf_js_binary( ], compile = 1, entry_point = ":tensor-widget-interop.ts", + use_precompiled_libraries = False, deps = [ ":tensor_widget_binary_lib", ],