aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/sqlite.BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-08-25 17:05:17 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-08-25 17:08:53 -0700
commit8dac0eb067662ba69a7eb72e640d8ff8d146e5c9 (patch)
tree9a4d135f0948b07ac56cac24b32c43eb5910ca0b /third_party/sqlite.BUILD
parentf1152a61faba3cba879203d1319930d8240599ea (diff)
SQL reader op is still in progress. Currently only supports sqlite3 and only
supports queries of text-valued columns. PiperOrigin-RevId: 166544839
Diffstat (limited to 'third_party/sqlite.BUILD')
-rw-r--r--third_party/sqlite.BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/sqlite.BUILD b/third_party/sqlite.BUILD
new file mode 100644
index 0000000000..f593b71542
--- /dev/null
+++ b/third_party/sqlite.BUILD
@@ -0,0 +1,16 @@
+# Description:
+# Sqlite3 library. Provides utilities for interacting
+# with sqlite3 databases.
+
+licenses(["notice"]) # BSD/MIT-like license
+
+exports_files(["LICENSE"])
+
+cc_library(
+ name = "sqlite",
+ srcs = ["sqlite3.c"],
+ hdrs = ["sqlite3.h"],
+ includes = ["."],
+ linkopts = ["-lm"],
+ visibility = ["//visibility:public"],
+)