tflite-micro/tensorflow/lite/BUILD
Esun Kim ba753cef3e
[CI] Fix build (#3194)
- Upgraded the Bazel BuildTool to the latest version (8.2.1).
- Updated the `tflm-ci` Docker image and pushed the new tag (0.6.1) to the `ghcr.io/tflm-bot/tflm-ci registry`.
- Updated the WORKSPACE to load `rules_cc` and `rules_shell` explicitly
- Ran `buildifier` to ensure all BUILD files to have all the fixes.

BUG=Clean-up
2025-09-19 20:48:22 +00:00

36 lines
675 B
Text

load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"],
)
cc_library(
name = "array",
srcs = ["array.cc"],
hdrs = ["array.h"],
deps = [
"//tensorflow/lite/c:common",
"//tensorflow/lite/core/c:common",
],
)
cc_library(
name = "type_to_tflitetype",
hdrs = [
"portable_type_to_tflitetype.h",
],
deps = ["//tensorflow/lite/c:common"],
)
cc_library(
name = "kernel_api",
hdrs = [
"builtin_op_data.h",
"builtin_ops.h",
"context_util.h",
],
deps = [
"//tensorflow/lite/c:common",
],
)