STT-tensorflow/third_party/systemlibs/sqlite.BUILD
A. Unique TensorFlower 985ad0276a PY2 removal cleanup
PiperOrigin-RevId: 352907145
Change-Id: I82de30d92dc9c2b53215d6d5732c67afe339c23d
2021-01-20 17:11:44 -08:00

16 lines
372 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 = "PY3",
visibility = ["//visibility:public"],
)