The C types in lite/c/c_api_internal.h are not actually internal, rather, they are common types used throughout the C++ and C APIs. Rename the header accordingly. PiperOrigin-RevId: 282494601 Change-Id: Ia784f35724d774db256ffcbbcdc5bb00e6574417
19 lines
382 B
Python
19 lines
382 B
Python
load("//tensorflow/lite:build_def.bzl", "tflite_copts")
|
|
|
|
package(
|
|
default_visibility = [
|
|
"//visibility:public",
|
|
],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
cc_library(
|
|
name = "csv_writer",
|
|
hdrs = ["csv_writer.h"],
|
|
copts = tflite_copts(),
|
|
deps = [
|
|
"//tensorflow/core:tflite_portable_logging",
|
|
"//tensorflow/lite/c:common",
|
|
],
|
|
)
|