chore: import upstream snapshot with attribution
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:14:16 +08:00
commit 8a852e4b4e
36502 changed files with 9277225 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
# 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",
],
)