view BUILD @ 280:49e9e591c9bb

Add persistent dictation, prewarmed WebRTC speech input, Copilot SDK routing, animated conversation lifecycle controls, parking, and architecture coverage.
author MrJuneJune <me@mrjunejune.com>
date Tue, 18 Aug 2026 19:14:53 -0700
parents b3b547563ec7
children
line wrap: on
line source

load("@rules_shell//shell:sh_test.bzl", "sh_test")

exports_files([".env"])

filegroup(
  name = "env_file",
  srcs = [".env"],
  visibility = ["//visibility:public"],
)

filegroup(
  name = "first_party_c_sources",
  srcs = glob(
    [
      "**/*.c",
      "**/*.h",
    ],
    exclude = ["third_party/**"],
  ),
)

sh_test(
  name = "arena_policy_test",
  srcs = ["tools/arena_policy_test.sh"],
  data = [":first_party_c_sources"],
)