Files
tensorflow--tensorflow/tensorflow/lite/async/interop/c/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

37 lines
955 B
Python

# This package contains shim library targets for the Async interop package,
# that forward to the TF Lite C and C++ API targets.
load("//tensorflow/lite:build_def.bzl", "tflite_copts", "tflite_copts_warnings")
cc_library(
name = "attribute_map",
hdrs = ["attribute_map.h"],
copts = tflite_copts() + tflite_copts_warnings(),
visibility = [
"//visibility:public",
],
deps = ["//tensorflow/lite/core/async/interop/c:attribute_map"],
)
cc_library(
name = "types",
hdrs = ["types.h"],
copts = tflite_copts() + tflite_copts_warnings(),
visibility = [
"//visibility:public",
],
deps = ["//tensorflow/lite/core/async/interop/c:types"],
)
cc_library(
name = "constants",
hdrs = ["constants.h"],
copts = tflite_copts() + tflite_copts_warnings(),
visibility = [
"//visibility:public",
],
deps = [
"//tensorflow/lite/core/async/interop/c:constants",
],
)