Mercurial
comparison BUILD @ 279:b3b547563ec7
Add Google connector service and agent wiki
Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 22:22:36 -0700 |
| parents | 008ca7780c8a |
| children |
comparison
equal
deleted
inserted
replaced
| 278:8d560f50ed4c | 279:b3b547563ec7 |
|---|---|
| 1 load("@rules_shell//shell:sh_test.bzl", "sh_test") | |
| 2 | |
| 1 exports_files([".env"]) | 3 exports_files([".env"]) |
| 2 | 4 |
| 3 filegroup( | 5 filegroup( |
| 4 name = "env_file", | 6 name = "env_file", |
| 5 srcs = [".env"], | 7 srcs = [".env"], |
| 6 visibility = ["//visibility:public"], | 8 visibility = ["//visibility:public"], |
| 7 ) | 9 ) |
| 10 | |
| 11 filegroup( | |
| 12 name = "first_party_c_sources", | |
| 13 srcs = glob( | |
| 14 [ | |
| 15 "**/*.c", | |
| 16 "**/*.h", | |
| 17 ], | |
| 18 exclude = ["third_party/**"], | |
| 19 ), | |
| 20 ) | |
| 21 | |
| 22 sh_test( | |
| 23 name = "arena_policy_test", | |
| 24 srcs = ["tools/arena_policy_test.sh"], | |
| 25 data = [":first_party_c_sources"], | |
| 26 ) |