STT-tensorflow/tensorflow/lite/experimental/resource/BUILD
Jared Duke 4ce6a9b7a4 Rename lite/c/c_api_internal.h to lite/c/common.h
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
2019-11-25 21:49:25 -08:00

26 lines
599 B
Python

package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
cc_library(
name = "resource",
srcs = [
"resource_variable.cc",
"static_hashtable.cc",
],
hdrs = [
"lookup_interfaces.h",
"lookup_util.h",
"resource_base.h",
"resource_variable.h",
"static_hashtable.h",
],
deps = [
"//tensorflow/lite:string_util",
"//tensorflow/lite/c:common",
"//tensorflow/lite/kernels/internal:compatibility",
"//tensorflow/lite/kernels/internal:tensor",
],
)