tflite-micro/python/tests/BUILD
Esun Kim 807c35d6a9
Bazel Module (#3364)
* Work

* Review update

* Enabled tests

* Bazel: Suppress warnings from external repositories

* Fixed whl_test

* Formatted

* More format
2026-02-11 14:11:47 -08:00

15 lines
316 B
Text

load("@rules_cc//cc:cc_test.bzl", "cc_test")
cc_test(
name = "cc_deps_link_test",
size = "small",
srcs = [
"cc_deps_link_test.cc",
],
tags = [
"nomsan", # avoid, because tensorflow library fails msan
],
deps = [
"@tflm_pip_deps//tensorflow:cc_library",
],
)