STT-tensorflow/third_party/systemlibs/sqlite.BUILD
Jason Zaman e30f976971 workspace: use TF_SYSTEM_LIBS to link to system libraries
Signed-off-by: Jason Zaman <jason@perfinion.com>
2018-07-13 11:25:39 +08:00

16 lines
376 B
Plaintext

licenses(["unencumbered"]) # Public Domain
# Production build of SQLite library that's baked into TensorFlow.
cc_library(
name = "org_sqlite",
linkopts = ["-lsqlite3"],
visibility = ["//visibility:public"],
)
# This is a Copybara sync helper for Google.
py_library(
name = "python",
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
)