From ec105435bd857fc29dba4ad36b56cd3f7c1e88af Mon Sep 17 00:00:00 2001 From: Olamiposi Otesile Date: Tue, 13 Jan 2026 18:55:07 +0100 Subject: [PATCH] fix: a global update of all io paths to gemma/io --- compression/python/BUILD.bazel | 4 ++-- paligemma/BUILD.bazel | 12 +++++++++++- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/compression/python/BUILD.bazel b/compression/python/BUILD.bazel index e3b7e36..7253720 100644 --- a/compression/python/BUILD.bazel +++ b/compression/python/BUILD.bazel @@ -23,8 +23,8 @@ cc_library( "//:threading_context", "//:tokenizer", "//compression:compress", - "//io", - "//io:blob_store", + "//gemma/io", + "//gemma/io:blob_store", "@highway//:hwy", ], ) diff --git a/paligemma/BUILD.bazel b/paligemma/BUILD.bazel index b749e05..390c79a 100644 --- a/paligemma/BUILD.bazel +++ b/paligemma/BUILD.bazel @@ -16,7 +16,7 @@ cc_library( srcs = ["image.cc"], hdrs = ["image.h"], deps = [ - "//io", + "//gemma/io", "@highway//:hwy", "@highway//:profiler", ], @@ -59,12 +59,22 @@ cc_test( "no_tap", ], deps = [ + ":paligemma_helper", + "@googletest//:gtest_main", # buildcleaner: keep + "//:allocator", + "//:benchmark_helper", + "//:configs", + "//:gemma_lib", + + "//gemma/io", + "@highway//:hwy_test_util", + ], )