From e3280294657932e83475e6b30f77d0f7ad390061 Mon Sep 17 00:00:00 2001 From: Ryan Kuester Date: Mon, 7 Oct 2024 12:52:23 -0500 Subject: [PATCH] build(bazel): fix dependencies in work-in-progress compression code In the Bazel build, add dependencies needed by the code added to t/l/m:micro_context for decompression. The Bazel build with or without compression was broken without this. --- tensorflow/lite/micro/BUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tensorflow/lite/micro/BUILD b/tensorflow/lite/micro/BUILD index 5dd10b514b1..3663bf18b75 100644 --- a/tensorflow/lite/micro/BUILD +++ b/tensorflow/lite/micro/BUILD @@ -66,7 +66,9 @@ cc_library( ":micro_common", ":micro_graph", ":micro_log", + ":micro_profiler", "//tensorflow/lite/c:common", + "//tensorflow/lite:type_to_tflitetype", ], )