Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 458a4d1

Browse files
Ensure that the "graph_info" target is a fully self-contained library
that contains definitions of all of the entities that it declares. PiperOrigin-RevId: 432164638
1 parent 984a57c commit 458a4d1

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

tensorflow/lite/BUILD

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,14 @@ cc_library(
199199

200200
cc_library(
201201
name = "graph_info",
202+
srcs = ["graph_info.cc"],
202203
hdrs = ["graph_info.h"],
203204
compatible_with = get_compatible_with_portable(),
204205
copts = tflite_copts_warnings(),
205-
deps = ["//tensorflow/lite/c:common"],
206+
deps = [
207+
":kernel_api",
208+
"//tensorflow/lite/c:common",
209+
],
206210
)
207211

208212
cc_library(
@@ -494,7 +498,6 @@ cc_library(
494498
name = "cc_api_experimental",
495499
srcs = [
496500
"core/subgraph.cc",
497-
"graph_info.cc",
498501
"interpreter_experimental.cc",
499502
"signature_runner.cc",
500503
],

0 commit comments

Comments
 (0)