Files
tensorflow--tensorflow/tensorflow/lite/async/testing/BUILD
T
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

25 lines
674 B
Python

# Test utilities for TFLite async execution.
load("//tensorflow/lite/core/shims:cc_library_with_tflite.bzl", "cc_library_with_tflite")
package(
# copybara:uncomment default_applicable_licenses = ["//tensorflow:LICENSE"],
default_visibility = [
"//visibility:private",
],
licenses = ["notice"],
)
cc_library_with_tflite(
name = "mock_async_kernel",
testonly = 1,
hdrs = ["mock_async_kernel.h"],
tflite_deps = [
"//tensorflow/lite/async:backend_async_kernel_interface",
"//tensorflow/lite/async/c:types",
],
visibility = ["//visibility:public"],
deps = [
"@com_google_googletest//:gtest",
],
)