STT-tensorflow/tensorflow/lite/experimental/resource/BUILD
A. Unique TensorFlower f5cb94eae2 Changes excluded by Copybara
PiperOrigin-RevId: 328408665
Change-Id: I86fb74f6eac377afeca2b65df067352dc17e0168
2020-08-25 14:55:59 -07:00

29 lines
722 B
Python

load("//tensorflow:tensorflow.bzl", "get_compatible_with_portable")
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",
],
compatible_with = get_compatible_with_portable(),
deps = [
"//tensorflow/lite:string_util",
"//tensorflow/lite/c:common",
"//tensorflow/lite/kernels/internal:compatibility",
"//tensorflow/lite/kernels/internal:tensor",
],
)