xref: /aosp_15_r20/external/tensorflow/third_party/systemlibs/sqlite.BUILD (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1licenses(["unencumbered"])  # Public Domain
2
3# Production build of SQLite library that's baked into TensorFlow.
4cc_library(
5    name = "org_sqlite",
6    linkopts = ["-lsqlite3"],
7    visibility = ["//visibility:public"],
8)
9
10# This is a Copybara sync helper for Google.
11py_library(
12    name = "python",
13    srcs_version = "PY3",
14    visibility = ["//visibility:public"],
15)
16