view deita/BUILD @ 258:60a876c4587a

[ui] Add semantic primitive ownership Build a layered Zenbu token and sizing system, make authored controls use native-underneath primitives, migrate mrjunejune without imposing visual surfaces, and document/enforce HTML ownership in the catalog and wiki. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Wed, 05 Aug 2026 05:25:40 -0700
parents f3084bca7317
children
line wrap: on
line source

load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")

cc_library(
  name = "deita",
  srcs = [
    "d_connection.c",
    "d_query.c",
    "d_sqlite.c",
  ],
  hdrs = [
    "deita.h",
    "deita_internal.h",
  ],
  deps = [
    "//dowa:dowa",
    "//third_party/sqlite3:sqlite3",
  ],
  visibility = ["//visibility:public"],
)

cc_test(
  name = "deita_test",
  srcs = ["deita_test.c"],
  deps = [":deita"],
)