where possible. PiperOrigin-RevId: 290126994 Change-Id: I5e456b788e306cef294882445cd2bf9005343dd5
39 lines
739 B
Python
39 lines
739 B
Python
package(
|
|
default_visibility = [
|
|
"//tensorflow/core:__subpackages__",
|
|
],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
exports_files(
|
|
srcs = [
|
|
"session.h",
|
|
"session_options.h",
|
|
"version.h",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
# Export source files needed for mobile builds, which do not use granular targets.
|
|
filegroup(
|
|
name = "mobile_srcs_no_runtime",
|
|
srcs = [
|
|
"version.h",
|
|
],
|
|
visibility = ["//tensorflow/core:__pkg__"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "mobile_srcs_only_runtime",
|
|
srcs = [
|
|
"session.h",
|
|
"session_options.h",
|
|
],
|
|
visibility = ["//tensorflow/core:__pkg__"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "version",
|
|
hdrs = ["version.h"],
|
|
)
|