aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/systemlibs/sqlite.BUILD
blob: 20ee1ebbefcc79abbccbc0c157d4a8b330a24743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"],
)