mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
* Work * Review update * Enabled tests * Bazel: Suppress warnings from external repositories * Fixed whl_test * Formatted * More format
15 lines
316 B
Text
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",
|
|
],
|
|
)
|