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