aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/systemlibs/sqlite.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/systemlibs/sqlite.BUILD')
-rw-r--r--third_party/systemlibs/sqlite.BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/systemlibs/sqlite.BUILD b/third_party/systemlibs/sqlite.BUILD
new file mode 100644
index 0000000000..20ee1ebbef
--- /dev/null
+++ b/third_party/systemlibs/sqlite.BUILD
@@ -0,0 +1,15 @@
+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"],
+)