Mercurial
comparison auth/test/BUILD @ 264:04fee26ecce0
add authenticated JRPG conversation platform
Add reusable auth/session storage, owned conversation recovery, guest quotas, admin workflows, URL-routed conversation UI, mobile frame support, and parallel browser acceptance.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 07 Aug 2026 07:34:12 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 263:ee04e4e69fed | 264:04fee26ecce0 |
|---|---|
| 1 load("@rules_cc//cc:cc_test.bzl", "cc_test") | |
| 2 | |
| 3 cc_test( | |
| 4 name = "auth_crypto_test", | |
| 5 srcs = ["auth_crypto_test.c"], | |
| 6 deps = ["//auth:auth_crypto"], | |
| 7 size = "small", | |
| 8 ) | |
| 9 | |
| 10 cc_test( | |
| 11 name = "auth_store_test", | |
| 12 srcs = ["auth_store_test.c"], | |
| 13 deps = [ | |
| 14 "//auth:auth_crypto", | |
| 15 "//auth:auth_store", | |
| 16 "//deita:deita", | |
| 17 ], | |
| 18 size = "medium", | |
| 19 timeout = "moderate", | |
| 20 ) |